blob: ebf021c4be4d68bade2c7a1cb572345642115b5a [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.rabbitmq.CamelRabbitmqSinkConnector",
"artifactId": "camel-rabbitmq-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-rabbitmq-sink",
"type": "sink",
"version": "0.7.0",
"description": "Send and receive messages from RabbitMQ instances."
},
"properties": {
"camel.sink.path.exchangeName": {
"name": "camel.sink.path.exchangeName",
"description": "The exchange name determines the exchange to which the produced messages will be sent to. In the case of consumers, the exchange name determines the exchange the queue will be bound to.",
"priority": "HIGH",
"required": "true"
},
"camel.sink.endpoint.addresses": {
"name": "camel.sink.endpoint.addresses",
"description": "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",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.autoDelete": {
"name": "camel.sink.endpoint.autoDelete",
"description": "If it is true, the exchange will be deleted when it is no longer in use",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.automaticRecoveryEnabled": {
"name": "camel.sink.endpoint.automaticRecoveryEnabled",
"description": "Enables connection automatic recovery (uses connection implementation that performs automatic recovery when existing connection has failures)",
"defaultValue": "\"true\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.connectionFactory": {
"name": "camel.sink.endpoint.connectionFactory",
"description": "To use a custom RabbitMQ connection factory. When this option is set, all connection options (connectionTimeout, requestedChannelMax...) set on URI are not used",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.deadLetterExchange": {
"name": "camel.sink.endpoint.deadLetterExchange",
"description": "The name of the dead letter exchange",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.deadLetterExchangeType": {
"name": "camel.sink.endpoint.deadLetterExchangeType",
"description": "The type of the dead letter exchange One of: [direct] [fanout] [headers] [topic]",
"defaultValue": "\"direct\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"direct",
"fanout",
"headers",
"topic"
]
},
"camel.sink.endpoint.deadLetterQueue": {
"name": "camel.sink.endpoint.deadLetterQueue",
"description": "The name of the dead letter queue",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.deadLetterRoutingKey": {
"name": "camel.sink.endpoint.deadLetterRoutingKey",
"description": "The routing key for the dead letter exchange",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.declare": {
"name": "camel.sink.endpoint.declare",
"description": "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.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.durable": {
"name": "camel.sink.endpoint.durable",
"description": "If we are declaring a durable exchange (the exchange will survive a server restart)",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.exchangeType": {
"name": "camel.sink.endpoint.exchangeType",
"description": "The exchange type such as direct or topic. One of: [direct] [fanout] [headers] [topic]",
"defaultValue": "\"direct\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"direct",
"fanout",
"headers",
"topic"
]
},
"camel.sink.endpoint.exclusive": {
"name": "camel.sink.endpoint.exclusive",
"description": "Exclusive queues may only be accessed by the current connection, and are deleted when that connection closes.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.hostname": {
"name": "camel.sink.endpoint.hostname",
"description": "The hostname of the running rabbitmq instance or cluster.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.passive": {
"name": "camel.sink.endpoint.passive",
"description": "Passive queues depend on the queue already to be available at RabbitMQ.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.portNumber": {
"name": "camel.sink.endpoint.portNumber",
"description": "Port number for the host with the running rabbitmq instance or cluster. Default value is 5672.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.queue": {
"name": "camel.sink.endpoint.queue",
"description": "The queue to receive messages from",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.routingKey": {
"name": "camel.sink.endpoint.routingKey",
"description": "The routing key to use when binding a consumer queue to the exchange. For producer routing keys, you set the header rabbitmq.ROUTING_KEY.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.skipDlqDeclare": {
"name": "camel.sink.endpoint.skipDlqDeclare",
"description": "If true the producer will not declare and bind a dead letter queue. This can be used if you have also DLQ rabbitmq consumer and you want to avoid argument clashing between Producer and Consumer. This option have no effect, if DLQ configured (deadLetterExchange option is not set).",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.skipExchangeDeclare": {
"name": "camel.sink.endpoint.skipExchangeDeclare",
"description": "This can be used if we need to declare the queue but not the exchange",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.skipQueueBind": {
"name": "camel.sink.endpoint.skipQueueBind",
"description": "If true the queue will not be bound to the exchange after declaring it",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.skipQueueDeclare": {
"name": "camel.sink.endpoint.skipQueueDeclare",
"description": "If true the producer will not declare and bind a queue. This can be used for directing messages via an existing routing key.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.vhost": {
"name": "camel.sink.endpoint.vhost",
"description": "The vhost for the channel",
"defaultValue": "\"\/\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.additionalHeaders": {
"name": "camel.sink.endpoint.additionalHeaders",
"description": "Map of additional headers. These headers will be set only when the 'allowCustomHeaders' is set to true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.additionalProperties": {
"name": "camel.sink.endpoint.additionalProperties",
"description": "Map of additional properties. These are standard RabbitMQ properties as defined in com.rabbitmq.client.AMQP.BasicProperties. The map keys should be from org.apache.camel.component.rabbitmq.RabbitMQConstants. Any other keys will be ignored.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.allowCustomHeaders": {
"name": "camel.sink.endpoint.allowCustomHeaders",
"description": "Allow pass custom values to header",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.allowNullHeaders": {
"name": "camel.sink.endpoint.allowNullHeaders",
"description": "Allow pass null values to header",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.bridgeEndpoint": {
"name": "camel.sink.endpoint.bridgeEndpoint",
"description": "If the bridgeEndpoint is true, the producer will ignore the message header of rabbitmq.EXCHANGE_NAME and rabbitmq.ROUTING_KEY",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.channelPoolMaxSize": {
"name": "camel.sink.endpoint.channelPoolMaxSize",
"description": "Get maximum number of opened channel in pool",
"defaultValue": "10",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.channelPoolMaxWait": {
"name": "camel.sink.endpoint.channelPoolMaxWait",
"description": "Set the maximum number of milliseconds to wait for a channel from the pool",
"defaultValue": "1000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.guaranteedDeliveries": {
"name": "camel.sink.endpoint.guaranteedDeliveries",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.immediate": {
"name": "camel.sink.endpoint.immediate",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.lazyStartProducer": {
"name": "camel.sink.endpoint.lazyStartProducer",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.mandatory": {
"name": "camel.sink.endpoint.mandatory",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.publisherAcknowledgements": {
"name": "camel.sink.endpoint.publisherAcknowledgements",
"description": "When true, the message will be published with publisher acknowledgements turned on",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.publisherAcknowledgementsTimeout": {
"name": "camel.sink.endpoint.publisherAcknowledgementsTimeout",
"description": "The amount of time in milliseconds to wait for a basic.ack response from RabbitMQ server",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.args": {
"name": "camel.sink.endpoint.args",
"description": "Specify arguments for configuring the different RabbitMQ concepts, a different prefix is required for each: Exchange: arg.exchange. Queue: arg.queue. Binding: arg.binding. DLQ: arg.dlq.queue. DLQ binding: arg.dlq.binding. For example to declare a queue with message ttl argument: http:\/\/localhost:5672\/exchange\/queueargs=arg.queue.x-message-ttl=60000",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.clientProperties": {
"name": "camel.sink.endpoint.clientProperties",
"description": "Connection client properties (client info used in negotiating with the server)",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.connectionFactoryExceptionHandler": {
"name": "camel.sink.endpoint.connectionFactoryExceptionHandler",
"description": "Custom rabbitmq ExceptionHandler for ConnectionFactory",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.connectionTimeout": {
"name": "camel.sink.endpoint.connectionTimeout",
"description": "Connection timeout",
"defaultValue": "60000",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.networkRecoveryInterval": {
"name": "camel.sink.endpoint.networkRecoveryInterval",
"description": "Network recovery interval in milliseconds (interval used when recovering from network failure)",
"defaultValue": "\"5000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.requestedChannelMax": {
"name": "camel.sink.endpoint.requestedChannelMax",
"description": "Connection requested channel max (max number of channels offered)",
"defaultValue": "2047",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.requestedFrameMax": {
"name": "camel.sink.endpoint.requestedFrameMax",
"description": "Connection requested frame max (max size of frame offered)",
"defaultValue": "0",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.requestedHeartbeat": {
"name": "camel.sink.endpoint.requestedHeartbeat",
"description": "Connection requested heartbeat (heart-beat in seconds offered)",
"defaultValue": "60",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.requestTimeout": {
"name": "camel.sink.endpoint.requestTimeout",
"description": "Set timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds)",
"defaultValue": "20000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.requestTimeoutCheckerInterval": {
"name": "camel.sink.endpoint.requestTimeoutCheckerInterval",
"description": "Set requestTimeoutCheckerInterval for inOut exchange",
"defaultValue": "1000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.synchronous": {
"name": "camel.sink.endpoint.synchronous",
"description": "Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.topologyRecoveryEnabled": {
"name": "camel.sink.endpoint.topologyRecoveryEnabled",
"description": "Enables connection topology recovery (should topology recovery be performed)",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.transferException": {
"name": "camel.sink.endpoint.transferException",
"description": "When true and an inOut Exchange failed on the consumer side send the caused Exception back in the response",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.allowMessageBodySerialization": {
"name": "camel.sink.endpoint.allowMessageBodySerialization",
"description": "Whether to allow Java serialization of the message body or not. If this value is true, the message body will be serialized on the producer side using Java serialization, if no type converter can handle the message body. On the consumer side, it will deserialize the message body if this value is true and the message contains a CamelSerialize header. Setting this value to true may introduce a security vulnerability as it allows an attacker to attempt to deserialize to a gadget object which could result in a RCE or other security vulnerability.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.password": {
"name": "camel.sink.endpoint.password",
"description": "Password for authenticated access",
"defaultValue": "\"guest\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslProtocol": {
"name": "camel.sink.endpoint.sslProtocol",
"description": "Enables SSL on connection, accepted value are true, TLS and 'SSLv3",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.trustManager": {
"name": "camel.sink.endpoint.trustManager",
"description": "Configure SSL trust manager, SSL should be enabled for this option to be effective",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.username": {
"name": "camel.sink.endpoint.username",
"description": "Username in case of authenticated access",
"defaultValue": "\"guest\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.addresses": {
"name": "camel.component.rabbitmq.addresses",
"description": "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",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.autoDelete": {
"name": "camel.component.rabbitmq.autoDelete",
"description": "If it is true, the exchange will be deleted when it is no longer in use",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.connectionFactory": {
"name": "camel.component.rabbitmq.connectionFactory",
"description": "To use a custom RabbitMQ connection factory. When this option is set, all connection options (connectionTimeout, requestedChannelMax...) set on URI are not used",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.deadLetterExchange": {
"name": "camel.component.rabbitmq.deadLetterExchange",
"description": "The name of the dead letter exchange",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.deadLetterExchangeType": {
"name": "camel.component.rabbitmq.deadLetterExchangeType",
"description": "The type of the dead letter exchange One of: [direct] [fanout] [headers] [topic]",
"defaultValue": "\"direct\"",
"priority": "MEDIUM",
"required": "false",
"enum": [
"direct",
"fanout",
"headers",
"topic"
]
},
"camel.component.rabbitmq.deadLetterQueue": {
"name": "camel.component.rabbitmq.deadLetterQueue",
"description": "The name of the dead letter queue",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.deadLetterRoutingKey": {
"name": "camel.component.rabbitmq.deadLetterRoutingKey",
"description": "The routing key for the dead letter exchange",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.declare": {
"name": "camel.component.rabbitmq.declare",
"description": "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.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.durable": {
"name": "camel.component.rabbitmq.durable",
"description": "If we are declaring a durable exchange (the exchange will survive a server restart)",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.exclusive": {
"name": "camel.component.rabbitmq.exclusive",
"description": "Exclusive queues may only be accessed by the current connection, and are deleted when that connection closes.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.hostname": {
"name": "camel.component.rabbitmq.hostname",
"description": "The hostname of the running RabbitMQ instance or cluster.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.passive": {
"name": "camel.component.rabbitmq.passive",
"description": "Passive queues depend on the queue already to be available at RabbitMQ.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.portNumber": {
"name": "camel.component.rabbitmq.portNumber",
"description": "Port number for the host with the running rabbitmq instance or cluster.",
"defaultValue": "5672",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.skipExchangeDeclare": {
"name": "camel.component.rabbitmq.skipExchangeDeclare",
"description": "This can be used if we need to declare the queue but not the exchange",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.skipQueueBind": {
"name": "camel.component.rabbitmq.skipQueueBind",
"description": "If true the queue will not be bound to the exchange after declaring it",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.skipQueueDeclare": {
"name": "camel.component.rabbitmq.skipQueueDeclare",
"description": "If true the producer will not declare and bind a queue. This can be used for directing messages via an existing routing key.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.vhost": {
"name": "camel.component.rabbitmq.vhost",
"description": "The vhost for the channel",
"defaultValue": "\"\/\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.additionalHeaders": {
"name": "camel.component.rabbitmq.additionalHeaders",
"description": "Map of additional headers. These headers will be set only when the 'allowCustomHeaders' is set to true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.additionalProperties": {
"name": "camel.component.rabbitmq.additionalProperties",
"description": "Map of additional properties. These are standard RabbitMQ properties as defined in com.rabbitmq.client.AMQP.BasicProperties The map keys should be from org.apache.camel.component.rabbitmq.RabbitMQConstants. Any other keys will be ignored. When the message already contains these headers they will be given precedence over these properties.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.allowNullHeaders": {
"name": "camel.component.rabbitmq.allowNullHeaders",
"description": "Allow pass null values to header",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.channelPoolMaxSize": {
"name": "camel.component.rabbitmq.channelPoolMaxSize",
"description": "Get maximum number of opened channel in pool",
"defaultValue": "10",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.channelPoolMaxWait": {
"name": "camel.component.rabbitmq.channelPoolMaxWait",
"description": "Set the maximum number of milliseconds to wait for a channel from the pool",
"defaultValue": "1000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.guaranteedDeliveries": {
"name": "camel.component.rabbitmq.guaranteedDeliveries",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.immediate": {
"name": "camel.component.rabbitmq.immediate",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.lazyStartProducer": {
"name": "camel.component.rabbitmq.lazyStartProducer",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.mandatory": {
"name": "camel.component.rabbitmq.mandatory",
"description": "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.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.publisherAcknowledgements": {
"name": "camel.component.rabbitmq.publisherAcknowledgements",
"description": "When true, the message will be published with publisher acknowledgements turned on",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.publisherAcknowledgementsTimeout": {
"name": "camel.component.rabbitmq.publisherAcknowledgementsTimeout",
"description": "The amount of time in milliseconds to wait for a basic.ack response from RabbitMQ server",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.args": {
"name": "camel.component.rabbitmq.args",
"description": "Specify arguments for configuring the different RabbitMQ concepts, a different prefix is required for each: Exchange: arg.exchange. Queue: arg.queue. Binding: arg.binding. DLQ: arg.dlq.queue. DLQ Binding: arg.dlq.binding. For example to declare a queue with message ttl argument: http:\/\/localhost:5672\/exchange\/queueargs=arg.queue.x-message-ttl=60000",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.autoDetectConnectionFactory": {
"name": "camel.component.rabbitmq.autoDetectConnectionFactory",
"description": "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.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.automaticRecoveryEnabled": {
"name": "camel.component.rabbitmq.automaticRecoveryEnabled",
"description": "Enables connection automatic recovery (uses connection implementation that performs automatic recovery when connection shutdown is not initiated by the application)",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.autowiredEnabled": {
"name": "camel.component.rabbitmq.autowiredEnabled",
"description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.clientProperties": {
"name": "camel.component.rabbitmq.clientProperties",
"description": "Connection client properties (client info used in negotiating with the server)",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.connectionFactoryExceptionHandler": {
"name": "camel.component.rabbitmq.connectionFactoryExceptionHandler",
"description": "Custom rabbitmq ExceptionHandler for ConnectionFactory",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.connectionTimeout": {
"name": "camel.component.rabbitmq.connectionTimeout",
"description": "Connection timeout",
"defaultValue": "60000",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.networkRecoveryInterval": {
"name": "camel.component.rabbitmq.networkRecoveryInterval",
"description": "Network recovery interval in milliseconds (interval used when recovering from network failure)",
"defaultValue": "\"5000\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.requestedChannelMax": {
"name": "camel.component.rabbitmq.requestedChannelMax",
"description": "Connection requested channel max (max number of channels offered)",
"defaultValue": "2047",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.requestedFrameMax": {
"name": "camel.component.rabbitmq.requestedFrameMax",
"description": "Connection requested frame max (max size of frame offered)",
"defaultValue": "0",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.requestedHeartbeat": {
"name": "camel.component.rabbitmq.requestedHeartbeat",
"description": "Connection requested heartbeat (heart-beat in seconds offered)",
"defaultValue": "60",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.requestTimeout": {
"name": "camel.component.rabbitmq.requestTimeout",
"description": "Set timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds)",
"defaultValue": "20000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.requestTimeoutCheckerInterval": {
"name": "camel.component.rabbitmq.requestTimeoutCheckerInterval",
"description": "Set requestTimeoutCheckerInterval for inOut exchange",
"defaultValue": "1000L",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.topologyRecoveryEnabled": {
"name": "camel.component.rabbitmq.topologyRecoveryEnabled",
"description": "Enables connection topology recovery (should topology recovery be performed)",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.transferException": {
"name": "camel.component.rabbitmq.transferException",
"description": "When true and an inOut Exchange failed on the consumer side send the caused Exception back in the response",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.password": {
"name": "camel.component.rabbitmq.password",
"description": "Password for authenticated access",
"defaultValue": "\"guest\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.sslProtocol": {
"name": "camel.component.rabbitmq.sslProtocol",
"description": "Enables SSL on connection, accepted value are true, TLS and 'SSLv3",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.trustManager": {
"name": "camel.component.rabbitmq.trustManager",
"description": "Configure SSL trust manager, SSL should be enabled for this option to be effective",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.rabbitmq.username": {
"name": "camel.component.rabbitmq.username",
"description": "Username in case of authenticated access",
"defaultValue": "\"guest\"",
"priority": "MEDIUM",
"required": "false"
}
}
}