public static interface JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
| Modifier and Type | Method and Description |
|---|---|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
allowAdditionalHeaders(String allowAdditionalHeaders)
This option is used to allow additional headers which may have values
that are invalid according to JMS specification.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
allowNullBody(boolean allowNullBody)
Whether to allow sending messages with no body.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
allowNullBody(String allowNullBody)
Whether to allow sending messages with no body.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
allowSerializedHeaders(boolean allowSerializedHeaders)
Controls whether or not to include serialized headers.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
allowSerializedHeaders(String allowSerializedHeaders)
Controls whether or not to include serialized headers.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
alwaysCopyMessage(boolean alwaysCopyMessage)
If true, Camel will always make a JMS message copy of the message
when it is passed to the producer for sending.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
alwaysCopyMessage(String alwaysCopyMessage)
If true, Camel will always make a JMS message copy of the message
when it is passed to the producer for sending.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
artemisStreamingEnabled(boolean artemisStreamingEnabled)
Whether optimizing for Apache Artemis streaming mode.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
artemisStreamingEnabled(String artemisStreamingEnabled)
Whether optimizing for Apache Artemis streaming mode.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
asyncStartListener(boolean asyncStartListener)
Whether to startup the JmsConsumer message listener asynchronously,
when starting a route.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
asyncStartListener(String asyncStartListener)
Whether to startup the JmsConsumer message listener asynchronously,
when starting a route.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
asyncStopListener(boolean asyncStopListener)
Whether to stop the JmsConsumer message listener asynchronously, when
stopping a route.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
asyncStopListener(String asyncStopListener)
Whether to stop the JmsConsumer message listener asynchronously, when
stopping a route.
|
default JmsEndpointBuilderFactory.JmsEndpointProducerBuilder |
basic() |
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
correlationProperty(String correlationProperty)
When using InOut exchange pattern use this JMS property instead of
JMSCorrelationID JMS property to correlate messages.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
destinationResolver(Object destinationResolver)
A pluggable
org.springframework.jms.support.destination.DestinationResolver that
allows you to use your own resolver (for example, to lookup the real
destination in a JNDI registry).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
destinationResolver(String destinationResolver)
A pluggable
org.springframework.jms.support.destination.DestinationResolver that
allows you to use your own resolver (for example, to lookup the real
destination in a JNDI registry).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
disableTimeToLive(boolean disableTimeToLive)
Use this option to force disabling time to live.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
disableTimeToLive(String disableTimeToLive)
Use this option to force disabling time to live.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
errorHandler(Object errorHandler)
Specifies a org.springframework.util.ErrorHandler to be invoked in
case of any uncaught exceptions thrown while processing a Message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
errorHandler(String errorHandler)
Specifies a org.springframework.util.ErrorHandler to be invoked in
case of any uncaught exceptions thrown while processing a Message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
exceptionListener(Object exceptionListener)
Specifies the JMS Exception Listener that is to be notified of any
underlying JMS exceptions.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
exceptionListener(String exceptionListener)
Specifies the JMS Exception Listener that is to be notified of any
underlying JMS exceptions.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
forceSendOriginalMessage(boolean forceSendOriginalMessage)
When using mapJmsMessage=false Camel will create a new JMS message to
send to a new JMS destination if you touch the headers (get or set)
during the route.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
forceSendOriginalMessage(String forceSendOriginalMessage)
When using mapJmsMessage=false Camel will create a new JMS message to
send to a new JMS destination if you touch the headers (get or set)
during the route.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)
To use a custom HeaderFilterStrategy to filter header to and from
Camel message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
headerFilterStrategy(String headerFilterStrategy)
To use a custom HeaderFilterStrategy to filter header to and from
Camel message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
idleConsumerLimit(int idleConsumerLimit)
Specify the limit for the number of consumers that are allowed to be
idle at any given time.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
idleConsumerLimit(String idleConsumerLimit)
Specify the limit for the number of consumers that are allowed to be
idle at any given time.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
idleTaskExecutionLimit(int idleTaskExecutionLimit)
Specifies the limit for idle executions of a receive task, not having
received any message within its execution.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
idleTaskExecutionLimit(String idleTaskExecutionLimit)
Specifies the limit for idle executions of a receive task, not having
received any message within its execution.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
includeAllJMSXProperties(boolean includeAllJMSXProperties)
Whether to include all JMSXxxx properties when mapping from JMS to
Camel Message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
includeAllJMSXProperties(String includeAllJMSXProperties)
Whether to include all JMSXxxx properties when mapping from JMS to
Camel Message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
includeSentJMSMessageID(boolean includeSentJMSMessageID)
Only applicable when sending to JMS destination using InOnly (eg fire
and forget).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
includeSentJMSMessageID(String includeSentJMSMessageID)
Only applicable when sending to JMS destination using InOnly (eg fire
and forget).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
jmsKeyFormatStrategy(Object jmsKeyFormatStrategy)
Pluggable strategy for encoding and decoding JMS keys so they can be
compliant with the JMS specification.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
jmsKeyFormatStrategy(String jmsKeyFormatStrategy)
Pluggable strategy for encoding and decoding JMS keys so they can be
compliant with the JMS specification.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
lazyCreateTransactionManager(boolean lazyCreateTransactionManager)
If true, Camel will create a JmsTransactionManager, if there is no
transactionManager injected when option transacted=true.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
lazyCreateTransactionManager(String lazyCreateTransactionManager)
If true, Camel will create a JmsTransactionManager, if there is no
transactionManager injected when option transacted=true.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
mapJmsMessage(boolean mapJmsMessage)
Specifies whether Camel should auto map the received JMS message to a
suited payload type, such as javax.jms.TextMessage to a String etc.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
mapJmsMessage(String mapJmsMessage)
Specifies whether Camel should auto map the received JMS message to a
suited payload type, such as javax.jms.TextMessage to a String etc.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
maxMessagesPerTask(int maxMessagesPerTask)
The number of messages per task.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
maxMessagesPerTask(String maxMessagesPerTask)
The number of messages per task.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageConverter(Object messageConverter)
To use a custom Spring
org.springframework.jms.support.converter.MessageConverter so you can
be in control how to map to/from a javax.jms.Message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageConverter(String messageConverter)
To use a custom Spring
org.springframework.jms.support.converter.MessageConverter so you can
be in control how to map to/from a javax.jms.Message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageCreatedStrategy(Object messageCreatedStrategy)
To use the given MessageCreatedStrategy which are invoked when Camel
creates new instances of javax.jms.Message objects when Camel is
sending a JMS message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageCreatedStrategy(String messageCreatedStrategy)
To use the given MessageCreatedStrategy which are invoked when Camel
creates new instances of javax.jms.Message objects when Camel is
sending a JMS message.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageIdEnabled(boolean messageIdEnabled)
When sending, specifies whether message IDs should be added.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageIdEnabled(String messageIdEnabled)
When sending, specifies whether message IDs should be added.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageListenerContainerFactory(Object messageListenerContainerFactory)
Registry ID of the MessageListenerContainerFactory used to determine
what
org.springframework.jms.listener.AbstractMessageListenerContainer to
use to consume messages.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageListenerContainerFactory(String messageListenerContainerFactory)
Registry ID of the MessageListenerContainerFactory used to determine
what
org.springframework.jms.listener.AbstractMessageListenerContainer to
use to consume messages.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageTimestampEnabled(boolean messageTimestampEnabled)
Specifies whether timestamps should be enabled by default on sending
messages.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
messageTimestampEnabled(String messageTimestampEnabled)
Specifies whether timestamps should be enabled by default on sending
messages.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
pubSubNoLocal(boolean pubSubNoLocal)
Specifies whether to inhibit the delivery of messages published by
its own connection.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
pubSubNoLocal(String pubSubNoLocal)
Specifies whether to inhibit the delivery of messages published by
its own connection.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
receiveTimeout(long receiveTimeout)
The timeout for receiving messages (in milliseconds).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
receiveTimeout(String receiveTimeout)
The timeout for receiving messages (in milliseconds).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
recoveryInterval(long recoveryInterval)
Specifies the interval between recovery attempts, i.e.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
recoveryInterval(String recoveryInterval)
Specifies the interval between recovery attempts, i.e.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
replyToCacheLevelName(String replyToCacheLevelName)
Sets the cache level by name for the reply consumer when doing
request/reply over JMS.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
replyToDestinationSelectorName(String replyToDestinationSelectorName)
Sets the JMS Selector using the fixed name to be used so you can
filter out your own replies from the others when using a shared queue
(that is, if you are not using a temporary reply queue).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
requestTimeoutCheckerInterval(long requestTimeoutCheckerInterval)
Configures how often Camel should check for timed out Exchanges when
doing request/reply over JMS.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
requestTimeoutCheckerInterval(String requestTimeoutCheckerInterval)
Configures how often Camel should check for timed out Exchanges when
doing request/reply over JMS.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
streamMessageTypeEnabled(boolean streamMessageTypeEnabled)
Sets whether StreamMessage type is enabled or not.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
streamMessageTypeEnabled(String streamMessageTypeEnabled)
Sets whether StreamMessage type is enabled or not.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transactionManager(Object transactionManager)
The Spring transaction manager to use.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transactionManager(String transactionManager)
The Spring transaction manager to use.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transactionName(String transactionName)
The name of the transaction to use.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transactionTimeout(int transactionTimeout)
The timeout value of the transaction (in seconds), if using
transacted mode.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transactionTimeout(String transactionTimeout)
The timeout value of the transaction (in seconds), if using
transacted mode.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transferException(boolean transferException)
If enabled and you are using Request Reply messaging (InOut) and an
Exchange failed on the consumer side, then the caused Exception will
be send back in response as a javax.jms.ObjectMessage.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transferException(String transferException)
If enabled and you are using Request Reply messaging (InOut) and an
Exchange failed on the consumer side, then the caused Exception will
be send back in response as a javax.jms.ObjectMessage.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transferExchange(boolean transferExchange)
You can transfer the exchange over the wire instead of just the body
and headers.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
transferExchange(String transferExchange)
You can transfer the exchange over the wire instead of just the body
and headers.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
useMessageIDAsCorrelationID(boolean useMessageIDAsCorrelationID)
Specifies whether JMSMessageID should always be used as
JMSCorrelationID for InOut messages.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
useMessageIDAsCorrelationID(String useMessageIDAsCorrelationID)
Specifies whether JMSMessageID should always be used as
JMSCorrelationID for InOut messages.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
waitForProvisionCorrelationToBeUpdatedCounter(int waitForProvisionCorrelationToBeUpdatedCounter)
Number of times to wait for provisional correlation id to be updated
to the actual correlation id when doing request/reply over JMS and
when the option useMessageIDAsCorrelationID is enabled.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
waitForProvisionCorrelationToBeUpdatedCounter(String waitForProvisionCorrelationToBeUpdatedCounter)
Number of times to wait for provisional correlation id to be updated
to the actual correlation id when doing request/reply over JMS and
when the option useMessageIDAsCorrelationID is enabled.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
waitForProvisionCorrelationToBeUpdatedThreadSleepingTime(long waitForProvisionCorrelationToBeUpdatedThreadSleepingTime)
Interval in millis to sleep each time while waiting for provisional
correlation id to be updated.
|
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder |
waitForProvisionCorrelationToBeUpdatedThreadSleepingTime(String waitForProvisionCorrelationToBeUpdatedThreadSleepingTime)
Interval in millis to sleep each time while waiting for provisional
correlation id to be updated.
|
default JmsEndpointBuilderFactory.JmsEndpointProducerBuilder basic()
default JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder allowAdditionalHeaders(String allowAdditionalHeaders)
allowAdditionalHeaders - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder allowNullBody(boolean allowNullBody)
allowNullBody - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder allowNullBody(String allowNullBody)
allowNullBody - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder alwaysCopyMessage(boolean alwaysCopyMessage)
alwaysCopyMessage - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder alwaysCopyMessage(String alwaysCopyMessage)
alwaysCopyMessage - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder correlationProperty(String correlationProperty)
correlationProperty - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder disableTimeToLive(boolean disableTimeToLive)
disableTimeToLive - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder disableTimeToLive(String disableTimeToLive)
disableTimeToLive - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder forceSendOriginalMessage(boolean forceSendOriginalMessage)
forceSendOriginalMessage - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder forceSendOriginalMessage(String forceSendOriginalMessage)
forceSendOriginalMessage - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder includeSentJMSMessageID(boolean includeSentJMSMessageID)
includeSentJMSMessageID - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder includeSentJMSMessageID(String includeSentJMSMessageID)
includeSentJMSMessageID - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder replyToCacheLevelName(String replyToCacheLevelName)
replyToCacheLevelName - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder replyToDestinationSelectorName(String replyToDestinationSelectorName)
replyToDestinationSelectorName - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder streamMessageTypeEnabled(boolean streamMessageTypeEnabled)
streamMessageTypeEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder streamMessageTypeEnabled(String streamMessageTypeEnabled)
streamMessageTypeEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder allowSerializedHeaders(boolean allowSerializedHeaders)
allowSerializedHeaders - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder allowSerializedHeaders(String allowSerializedHeaders)
allowSerializedHeaders - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder artemisStreamingEnabled(boolean artemisStreamingEnabled)
artemisStreamingEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder artemisStreamingEnabled(String artemisStreamingEnabled)
artemisStreamingEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder asyncStartListener(boolean asyncStartListener)
asyncStartListener - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder asyncStartListener(String asyncStartListener)
asyncStartListener - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder asyncStopListener(boolean asyncStopListener)
asyncStopListener - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder asyncStopListener(String asyncStopListener)
asyncStopListener - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder destinationResolver(Object destinationResolver)
destinationResolver - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder destinationResolver(String destinationResolver)
destinationResolver - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder errorHandler(Object errorHandler)
errorHandler - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder errorHandler(String errorHandler)
errorHandler - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder exceptionListener(Object exceptionListener)
exceptionListener - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder exceptionListener(String exceptionListener)
exceptionListener - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)
headerFilterStrategy - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder headerFilterStrategy(String headerFilterStrategy)
headerFilterStrategy - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder idleConsumerLimit(int idleConsumerLimit)
idleConsumerLimit - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder idleConsumerLimit(String idleConsumerLimit)
idleConsumerLimit - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder idleTaskExecutionLimit(int idleTaskExecutionLimit)
idleTaskExecutionLimit - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder idleTaskExecutionLimit(String idleTaskExecutionLimit)
idleTaskExecutionLimit - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder includeAllJMSXProperties(boolean includeAllJMSXProperties)
includeAllJMSXProperties - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder includeAllJMSXProperties(String includeAllJMSXProperties)
includeAllJMSXProperties - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder jmsKeyFormatStrategy(Object jmsKeyFormatStrategy)
jmsKeyFormatStrategy - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder jmsKeyFormatStrategy(String jmsKeyFormatStrategy)
jmsKeyFormatStrategy - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder mapJmsMessage(boolean mapJmsMessage)
mapJmsMessage - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder mapJmsMessage(String mapJmsMessage)
mapJmsMessage - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder maxMessagesPerTask(int maxMessagesPerTask)
maxMessagesPerTask - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder maxMessagesPerTask(String maxMessagesPerTask)
maxMessagesPerTask - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageConverter(Object messageConverter)
messageConverter - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageConverter(String messageConverter)
messageConverter - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageCreatedStrategy(Object messageCreatedStrategy)
messageCreatedStrategy - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageCreatedStrategy(String messageCreatedStrategy)
messageCreatedStrategy - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageIdEnabled(boolean messageIdEnabled)
messageIdEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageIdEnabled(String messageIdEnabled)
messageIdEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageListenerContainerFactory(Object messageListenerContainerFactory)
messageListenerContainerFactory - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageListenerContainerFactory(String messageListenerContainerFactory)
messageListenerContainerFactory - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageTimestampEnabled(boolean messageTimestampEnabled)
messageTimestampEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder messageTimestampEnabled(String messageTimestampEnabled)
messageTimestampEnabled - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder pubSubNoLocal(boolean pubSubNoLocal)
pubSubNoLocal - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder pubSubNoLocal(String pubSubNoLocal)
pubSubNoLocal - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder receiveTimeout(long receiveTimeout)
receiveTimeout - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder receiveTimeout(String receiveTimeout)
receiveTimeout - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder recoveryInterval(long recoveryInterval)
recoveryInterval - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder recoveryInterval(String recoveryInterval)
recoveryInterval - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder requestTimeoutCheckerInterval(long requestTimeoutCheckerInterval)
requestTimeoutCheckerInterval - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder requestTimeoutCheckerInterval(String requestTimeoutCheckerInterval)
requestTimeoutCheckerInterval - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder synchronous(boolean synchronous)
synchronous - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder synchronous(String synchronous)
synchronous - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transferException(boolean transferException)
transferException - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transferException(String transferException)
transferException - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transferExchange(boolean transferExchange)
transferExchange - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transferExchange(String transferExchange)
transferExchange - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder useMessageIDAsCorrelationID(boolean useMessageIDAsCorrelationID)
useMessageIDAsCorrelationID - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder useMessageIDAsCorrelationID(String useMessageIDAsCorrelationID)
useMessageIDAsCorrelationID - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder waitForProvisionCorrelationToBeUpdatedCounter(int waitForProvisionCorrelationToBeUpdatedCounter)
waitForProvisionCorrelationToBeUpdatedCounter - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder waitForProvisionCorrelationToBeUpdatedCounter(String waitForProvisionCorrelationToBeUpdatedCounter)
waitForProvisionCorrelationToBeUpdatedCounter - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder waitForProvisionCorrelationToBeUpdatedThreadSleepingTime(long waitForProvisionCorrelationToBeUpdatedThreadSleepingTime)
waitForProvisionCorrelationToBeUpdatedThreadSleepingTime - the
value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder waitForProvisionCorrelationToBeUpdatedThreadSleepingTime(String waitForProvisionCorrelationToBeUpdatedThreadSleepingTime)
waitForProvisionCorrelationToBeUpdatedThreadSleepingTime - the
value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder lazyCreateTransactionManager(boolean lazyCreateTransactionManager)
lazyCreateTransactionManager - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder lazyCreateTransactionManager(String lazyCreateTransactionManager)
lazyCreateTransactionManager - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transactionManager(Object transactionManager)
transactionManager - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transactionManager(String transactionManager)
transactionManager - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transactionName(String transactionName)
transactionName - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transactionTimeout(int transactionTimeout)
transactionTimeout - the value to setdefault JmsEndpointBuilderFactory.AdvancedJmsEndpointProducerBuilder transactionTimeout(String transactionTimeout)
transactionTimeout - the value to setApache Camel