Interface RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
-
- All Superinterfaces:
ComponentBuilder<org.apache.camel.component.rabbitmq.RabbitMQComponent>
- All Known Implementing Classes:
RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderImpl
- Enclosing interface:
- RabbitmqComponentBuilderFactory
public static interface RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder extends ComponentBuilder<org.apache.camel.component.rabbitmq.RabbitMQComponent>
Builder for the RabbitMQ component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderaddresses(String addresses)If this option is set, camel-rabbitmq will try to create connection based on the setting of option addresses.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderallowNullHeaders(boolean allowNullHeaders)Allow pass null values to header.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderargs(Map<String,Object> args)Specify arguments for configuring the different RabbitMQ concepts, a different prefix is required for each: Exchange: arg.exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderautoAck(boolean autoAck)If messages should be auto acknowledged.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderautoDelete(boolean autoDelete)If it is true, the exchange will be deleted when it is no longer in use.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderautoDetectConnectionFactory(boolean autoDetectConnectionFactory)Whether to auto-detect looking up RabbitMQ connection factory from the registry.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderautomaticRecoveryEnabled(Boolean automaticRecoveryEnabled)Enables connection automatic recovery (uses connection implementation that performs automatic recovery when connection shutdown is not initiated by the application).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderbasicPropertyBinding(boolean basicPropertyBinding)Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderbridgeErrorHandler(boolean bridgeErrorHandler)Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderchannelPoolMaxSize(int channelPoolMaxSize)Get maximum number of opened channel in pool.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderchannelPoolMaxWait(long channelPoolMaxWait)Set the maximum number of milliseconds to wait for a channel from the pool.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderclientProperties(Map<String,Object> clientProperties)Connection client properties (client info used in negotiating with the server).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderconnectionFactory(com.rabbitmq.client.ConnectionFactory connectionFactory)To use a custom RabbitMQ connection factory.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderconnectionFactoryExceptionHandler(com.rabbitmq.client.ExceptionHandler connectionFactoryExceptionHandler)Custom rabbitmq ExceptionHandler for ConnectionFactory.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderconnectionTimeout(int connectionTimeout)Connection timeout.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderdeadLetterExchange(String deadLetterExchange)The name of the dead letter exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderdeadLetterExchangeType(String deadLetterExchangeType)The type of the dead letter exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderdeadLetterQueue(String deadLetterQueue)The name of the dead letter queue.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderdeadLetterRoutingKey(String deadLetterRoutingKey)The routing key for the dead letter exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderdeclare(boolean declare)If the option is true, camel declare the exchange and queue name and bind them together.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderdurable(boolean durable)If we are declaring a durable exchange (the exchange will survive a server restart).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderexclusive(boolean exclusive)Exclusive queues may only be accessed by the current connection, and are deleted when that connection closes.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderexclusiveConsumer(boolean exclusiveConsumer)Request exclusive access to the queue (meaning only this consumer can access the queue).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderguaranteedDeliveries(boolean guaranteedDeliveries)When true, an exception will be thrown when the message cannot be delivered (basic.return) and the message is marked as mandatory.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderhostname(String hostname)The hostname of the running RabbitMQ instance or cluster.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderimmediate(boolean immediate)This flag tells the server how to react if the message cannot be routed to a queue consumer immediately.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderlazyStartProducer(boolean lazyStartProducer)Whether the producer should be started lazy (on the first message).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuildermandatory(boolean mandatory)This flag tells the server how to react if the message cannot be routed to a queue.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuildernetworkRecoveryInterval(Integer networkRecoveryInterval)Network recovery interval in milliseconds (interval used when recovering from network failure).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderpassive(boolean passive)Passive queues depend on the queue already to be available at RabbitMQ.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderpassword(String password)Password for authenticated access.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderportNumber(int portNumber)Port number for the host with the running rabbitmq instance or cluster.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderprefetchCount(int prefetchCount)The maximum number of messages that the server will deliver, 0 if unlimited.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderprefetchEnabled(boolean prefetchEnabled)Enables the quality of service on the RabbitMQConsumer side.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderprefetchGlobal(boolean prefetchGlobal)If the settings should be applied to the entire channel rather than each consumer You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderprefetchSize(int prefetchSize)The maximum amount of content (measured in octets) that the server will deliver, 0 if unlimited.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderpublisherAcknowledgements(boolean publisherAcknowledgements)When true, the message will be published with publisher acknowledgements turned on.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderpublisherAcknowledgementsTimeout(long publisherAcknowledgementsTimeout)The amount of time in milliseconds to wait for a basic.ack response from RabbitMQ server.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderrequestedChannelMax(int requestedChannelMax)Connection requested channel max (max number of channels offered).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderrequestedFrameMax(int requestedFrameMax)Connection requested frame max (max size of frame offered).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderrequestedHeartbeat(int requestedHeartbeat)Connection requested heartbeat (heart-beat in seconds offered).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderrequestTimeout(long requestTimeout)Set timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderrequestTimeoutCheckerInterval(long requestTimeoutCheckerInterval)Set requestTimeoutCheckerInterval for inOut exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderskipExchangeDeclare(boolean skipExchangeDeclare)This can be used if we need to declare the queue but not the exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderskipQueueBind(boolean skipQueueBind)If true the queue will not be bound to the exchange after declaring it.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderskipQueueDeclare(boolean skipQueueDeclare)If true the producer will not declare and bind a queue.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuildersslProtocol(String sslProtocol)Enables SSL on connection, accepted value are true, TLS and 'SSLv3.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderthreadPoolSize(int threadPoolSize)The consumer uses a Thread Pool Executor with a fixed number of threads.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuildertopologyRecoveryEnabled(Boolean topologyRecoveryEnabled)Enables connection topology recovery (should topology recovery be performed).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuildertransferException(boolean transferException)When true and an inOut Exchange failed on the consumer side send the caused Exception back in the response.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuildertrustManager(TrustManager trustManager)Configure SSL trust manager, SSL should be enabled for this option to be effective.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderusername(String username)Username in case of authenticated access.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuildervhost(String vhost)The vhost for the channel.-
Methods inherited from interface org.apache.camel.builder.component.ComponentBuilder
build, build, doSetProperty, register
-
-
-
-
Method Detail
-
addresses
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder addresses(String addresses)
If this option is set, camel-rabbitmq will try to create connection based on the setting of option addresses. The addresses value is a string which looks like server1:12345, server2:12345. The option is a:java.lang.Stringtype. Group: common
-
autoDelete
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder autoDelete(boolean autoDelete)
If it is true, the exchange will be deleted when it is no longer in use. The option is a:booleantype. Default: true Group: common
-
connectionFactory
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder connectionFactory(com.rabbitmq.client.ConnectionFactory connectionFactory)
To use a custom RabbitMQ connection factory. When this option is set, all connection options (connectionTimeout, requestedChannelMax...) set on URI are not used. The option is a:com.rabbitmq.client.ConnectionFactorytype. Group: common
-
deadLetterExchange
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterExchange(String deadLetterExchange)
The name of the dead letter exchange. The option is a:java.lang.Stringtype. Group: common
-
deadLetterExchangeType
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterExchangeType(String deadLetterExchangeType)
The type of the dead letter exchange. The option is a:java.lang.Stringtype. Default: direct Group: common
-
deadLetterQueue
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterQueue(String deadLetterQueue)
The name of the dead letter queue. The option is a:java.lang.Stringtype. Group: common
-
deadLetterRoutingKey
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterRoutingKey(String deadLetterRoutingKey)
The routing key for the dead letter exchange. The option is a:java.lang.Stringtype. Group: common
-
declare
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder declare(boolean declare)
If the option is true, camel declare the exchange and queue name and bind them together. If the option is false, camel won't declare the exchange and queue name on the server. The option is a:booleantype. Default: true Group: common
-
durable
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder durable(boolean durable)
If we are declaring a durable exchange (the exchange will survive a server restart). The option is a:booleantype. Default: true Group: common
-
exclusive
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder exclusive(boolean exclusive)
Exclusive queues may only be accessed by the current connection, and are deleted when that connection closes. The option is a:booleantype. Default: false Group: common
-
hostname
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder hostname(String hostname)
The hostname of the running RabbitMQ instance or cluster. The option is a:java.lang.Stringtype. Group: common
-
passive
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder passive(boolean passive)
Passive queues depend on the queue already to be available at RabbitMQ. The option is a:booleantype. Default: false Group: common
-
portNumber
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder portNumber(int portNumber)
Port number for the host with the running rabbitmq instance or cluster. The option is a:inttype. Default: 5672 Group: common
-
skipExchangeDeclare
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder skipExchangeDeclare(boolean skipExchangeDeclare)
This can be used if we need to declare the queue but not the exchange. The option is a:booleantype. Default: false Group: common
-
skipQueueBind
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder skipQueueBind(boolean skipQueueBind)
If true the queue will not be bound to the exchange after declaring it. The option is a:booleantype. Default: false Group: common
-
skipQueueDeclare
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder skipQueueDeclare(boolean skipQueueDeclare)
If true the producer will not declare and bind a queue. This can be used for directing messages via an existing routing key. The option is a:booleantype. Default: false Group: common
-
vhost
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder vhost(String vhost)
The vhost for the channel. The option is a:java.lang.Stringtype. Default: / Group: common
-
autoAck
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder autoAck(boolean autoAck)
If messages should be auto acknowledged. The option is a:booleantype. Default: true Group: consumer
-
bridgeErrorHandler
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a:booleantype. Default: false Group: consumer
-
exclusiveConsumer
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder exclusiveConsumer(boolean exclusiveConsumer)
Request exclusive access to the queue (meaning only this consumer can access the queue). This is useful when you want a long-lived shared queue to be temporarily accessible by just one consumer. The option is a:booleantype. Default: false Group: consumer
-
prefetchCount
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchCount(int prefetchCount)
The maximum number of messages that the server will deliver, 0 if unlimited. You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:inttype. Group: consumer
-
prefetchEnabled
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchEnabled(boolean prefetchEnabled)
Enables the quality of service on the RabbitMQConsumer side. You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:booleantype. Default: false Group: consumer
-
prefetchGlobal
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchGlobal(boolean prefetchGlobal)
If the settings should be applied to the entire channel rather than each consumer You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:booleantype. Default: false Group: consumer
-
prefetchSize
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchSize(int prefetchSize)
The maximum amount of content (measured in octets) that the server will deliver, 0 if unlimited. You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:inttype. Group: consumer
-
threadPoolSize
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder threadPoolSize(int threadPoolSize)
The consumer uses a Thread Pool Executor with a fixed number of threads. This setting allows you to set that number of threads. The option is a:inttype. Default: 10 Group: consumer (advanced)
-
allowNullHeaders
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder allowNullHeaders(boolean allowNullHeaders)
Allow pass null values to header. The option is a:booleantype. Default: false Group: producer
-
channelPoolMaxSize
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder channelPoolMaxSize(int channelPoolMaxSize)
Get maximum number of opened channel in pool. The option is a:inttype. Default: 10 Group: producer
-
channelPoolMaxWait
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder channelPoolMaxWait(long channelPoolMaxWait)
Set the maximum number of milliseconds to wait for a channel from the pool. The option is a:longtype. Default: 1000 Group: producer
-
guaranteedDeliveries
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder guaranteedDeliveries(boolean guaranteedDeliveries)
When true, an exception will be thrown when the message cannot be delivered (basic.return) and the message is marked as mandatory. PublisherAcknowledgement will also be activated in this case. See also publisher acknowledgements - When will messages be confirmed. The option is a:booleantype. Default: false Group: producer
-
immediate
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder immediate(boolean immediate)
This flag tells the server how to react if the message cannot be routed to a queue consumer immediately. If this flag is set, the server will return an undeliverable message with a Return method. If this flag is zero, the server will queue the message, but with no guarantee that it will ever be consumed. If the header is present rabbitmq.IMMEDIATE it will override this option. The option is a:booleantype. Default: false Group: producer
-
lazyStartProducer
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a:booleantype. Default: false Group: producer
-
mandatory
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder mandatory(boolean mandatory)
This flag tells the server how to react if the message cannot be routed to a queue. If this flag is set, the server will return an unroutable message with a Return method. If this flag is zero, the server silently drops the message. If the header is present rabbitmq.MANDATORY it will override this option. The option is a:booleantype. Default: false Group: producer
-
publisherAcknowledgements
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder publisherAcknowledgements(boolean publisherAcknowledgements)
When true, the message will be published with publisher acknowledgements turned on. The option is a:booleantype. Default: false Group: producer
-
publisherAcknowledgementsTimeout
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder publisherAcknowledgementsTimeout(long publisherAcknowledgementsTimeout)
The amount of time in milliseconds to wait for a basic.ack response from RabbitMQ server. The option is a:longtype. Group: producer
-
args
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder args(Map<String,Object> args)
Specify arguments for configuring the different RabbitMQ concepts, a different prefix is required for each: Exchange: arg.exchange. Queue: arg.queue. Binding: arg.binding. For example to declare a queue with message ttl argument: http://localhost:5672/exchange/queueargs=arg.queue.x-message-ttl=60000. The option is a:java.util.Maptype. Group: advanced
-
autoDetectConnectionFactory
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder autoDetectConnectionFactory(boolean autoDetectConnectionFactory)
Whether to auto-detect looking up RabbitMQ connection factory from the registry. When enabled and a single instance of the connection factory is found then it will be used. An explicit connection factory can be configured on the component or endpoint level which takes precedence. The option is a:booleantype. Default: true Group: advanced
-
automaticRecoveryEnabled
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder automaticRecoveryEnabled(Boolean automaticRecoveryEnabled)
Enables connection automatic recovery (uses connection implementation that performs automatic recovery when connection shutdown is not initiated by the application). The option is a:java.lang.Booleantype. Group: advanced
-
basicPropertyBinding
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder basicPropertyBinding(boolean basicPropertyBinding)
Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities. The option is a:booleantype. Default: false Group: advanced
-
clientProperties
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder clientProperties(Map<String,Object> clientProperties)
Connection client properties (client info used in negotiating with the server). The option is a:java.util.Maptype. Group: advanced
-
connectionFactoryExceptionHandler
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder connectionFactoryExceptionHandler(com.rabbitmq.client.ExceptionHandler connectionFactoryExceptionHandler)
Custom rabbitmq ExceptionHandler for ConnectionFactory. The option is a:com.rabbitmq.client.ExceptionHandlertype. Group: advanced
-
connectionTimeout
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder connectionTimeout(int connectionTimeout)
Connection timeout. The option is a:inttype. Default: 60000 Group: advanced
-
networkRecoveryInterval
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder networkRecoveryInterval(Integer networkRecoveryInterval)
Network recovery interval in milliseconds (interval used when recovering from network failure). The option is a:java.lang.Integertype. Default: 5000 Group: advanced
-
requestedChannelMax
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestedChannelMax(int requestedChannelMax)
Connection requested channel max (max number of channels offered). The option is a:inttype. Default: 2047 Group: advanced
-
requestedFrameMax
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestedFrameMax(int requestedFrameMax)
Connection requested frame max (max size of frame offered). The option is a:inttype. Default: 0 Group: advanced
-
requestedHeartbeat
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestedHeartbeat(int requestedHeartbeat)
Connection requested heartbeat (heart-beat in seconds offered). The option is a:inttype. Default: 60 Group: advanced
-
requestTimeout
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestTimeout(long requestTimeout)
Set timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds). The option is a:longtype. Default: 20000 Group: advanced
-
requestTimeoutCheckerInterval
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestTimeoutCheckerInterval(long requestTimeoutCheckerInterval)
Set requestTimeoutCheckerInterval for inOut exchange. The option is a:longtype. Default: 1000 Group: advanced
-
topologyRecoveryEnabled
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder topologyRecoveryEnabled(Boolean topologyRecoveryEnabled)
Enables connection topology recovery (should topology recovery be performed). The option is a:java.lang.Booleantype. Group: advanced
-
transferException
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder transferException(boolean transferException)
When true and an inOut Exchange failed on the consumer side send the caused Exception back in the response. The option is a:booleantype. Default: false Group: advanced
-
password
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder password(String password)
Password for authenticated access. The option is a:java.lang.Stringtype. Default: guest Group: security
-
sslProtocol
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder sslProtocol(String sslProtocol)
Enables SSL on connection, accepted value are true, TLS and 'SSLv3. The option is a:java.lang.Stringtype. Group: security
-
trustManager
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder trustManager(TrustManager trustManager)
Configure SSL trust manager, SSL should be enabled for this option to be effective. The option is a:javax.net.ssl.TrustManagertype. Group: security
-
username
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder username(String username)
Username in case of authenticated access. The option is a:java.lang.Stringtype. Default: guest Group: security
-
-