Constant Field Values
Contents
org.apache.*
-
org.apache.camel.kafkaconnector.netty.CamelNettySinkConnectorConfigModifier and TypeConstant FieldValue
public static final String"camel.component.netty.allowDefaultCodec"public static final String"The netty component installs a default codec if both, encoder/decoder is null and textline is false. Setting allowDefaultCodec to false prevents the netty component from installing a default codec as the first element in the filter chain."public static final String"camel.component.netty.allowSerializedHeaders"public static final String"Only used for TCP when transferExchange is true. When set to true, serializable objects in headers and properties will be added to the exchange. Otherwise Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.component.netty.autoAppendDelimiter"public static final String"Whether or not to auto append missing end delimiter when sending using the textline codec."public static final String"camel.component.netty.autowiredEnabled"public static final String"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."public static final String"camel.component.netty.channelGroup"public static final String"To use a explicit ChannelGroup."public static final String"camel.component.netty.clientInitializerFactory"public static final String"To use a custom ClientInitializerFactory"public static final String"camel.component.netty.configuration"public static final String"To use the NettyConfiguration as configuration when creating endpoints."public static final String"camel.component.netty.connectTimeout"public static final String"Time to wait for a socket connection to be available. Value is in milliseconds."public static final String"camel.component.netty.correlationManager"public static final String"To use a custom correlation manager to manage how request and reply messages are mapped when using request/reply with the netty producer. This should only be used if you have a way to map requests together with replies such as if there is correlation ids in both the request and reply messages. This can be used if you want to multiplex concurrent messages on the same channel (aka connection) in netty. When doing this you must have a way to correlate the request and reply messages so you can store the right reply on the inflight Camel Exchange before its continued routed. We recommend extending the TimeoutCorrelationManagerSupport when you build custom correlation managers. This provides support for timeout and other complexities you otherwise would need to implement as well. See also the producerPoolEnabled option for more details."public static final String"camel.component.netty.decoderMaxLineLength"public static final String"The max line length to use for the textline codec."public static final String"camel.component.netty.decoders"public static final String"A list of decoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.component.netty.delimiter"public static final String"LINE"public static final String"The delimiter to use for the textline codec. Possible values are LINE and NULL. One of: [LINE] [NULL]"public static final String"camel.component.netty.disconnect"public static final String"Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer."public static final String"camel.component.netty.enabledProtocols"public static final String"TLSv1.2,TLSv1.3"public static final String"Which protocols to enable when using SSL"public static final String"camel.component.netty.encoders"public static final String"A list of encoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.component.netty.encoding"public static final String"The encoding (a charset name) to use for the textline codec. If not provided, Camel will use the JVM default Charset."public static final String"camel.component.netty.hostnameVerification"public static final String"To enable/disable hostname verification on SSLEngine"public static final String"camel.component.netty.keepAlive"public static final String"Setting to ensure socket is not closed due to inactivity"public static final String"camel.component.netty.keyStoreFile"public static final String"Client side certificate keystore to be used for encryption"public static final String"camel.component.netty.keyStoreFormat"public static final String"Keystore format to be used for payload encryption. Defaults to JKS if not set"public static final String"camel.component.netty.keyStoreResource"public static final String"Client side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.component.netty.lazyChannelCreation"public static final String"Channels can be lazily created to avoid exceptions, if the remote server is not up and running when the Camel producer is started."public static final String"camel.component.netty.lazyStartProducer"public static final String"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."public static final String"camel.component.netty.nativeTransport"public static final String"Whether to use native transport instead of NIO. Native transport takes advantage of the host operating system and is only supported on some platforms. You need to add the netty JAR for the host operating system you are using. See more details at: http://netty.io/wiki/native-transports.html"public static final String"camel.component.netty.options"public static final String"Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used."public static final String"camel.component.netty.passphrase"public static final String"Password setting to use in order to encrypt/decrypt payloads sent using SSH"public static final String"camel.component.netty.producerPoolBlockWhenExhausted"public static final String"Sets the value for the blockWhenExhausted configuration attribute. It determines whether to block when the borrowObject() method is invoked when the pool is exhausted (the maximum number of active objects has been reached)."public static final String"camel.component.netty.producerPoolEnabled"public static final String"Whether producer pool is enabled or not. Important: If you turn this off then a single shared connection is used for the producer, also if you are doing request/reply. That means there is a potential issue with interleaved responses if replies comes back out-of-order. Therefore you need to have a correlation id in both the request and reply messages so you can properly correlate the replies to the Camel callback that is responsible for continue processing the message in Camel. To do this you need to implement NettyCamelStateCorrelationManager as correlation manager and configure it via the correlationManager option. See also the correlationManager option for more details."public static final String"camel.component.netty.producerPoolMaxIdle"public static final String"Sets the cap on the number of idle instances in the pool."public static final String"camel.component.netty.producerPoolMaxTotal"public static final String"Sets the cap on the number of objects that can be allocated by the pool (checked out to clients, or idle awaiting checkout) at a given time. Use a negative value for no limit."public static final String"camel.component.netty.producerPoolMaxWait"public static final String"Sets the maximum duration (value in millis) the borrowObject() method should block before throwing an exception when the pool is exhausted and producerPoolBlockWhenExhausted is true. When less than 0, the borrowObject() method may block indefinitely."public static final String"camel.component.netty.producerPoolMinEvictableIdle"public static final String"Sets the minimum amount of time (value in millis) an object may sit idle in the pool before it is eligible for eviction by the idle object evictor."public static final String"camel.component.netty.producerPoolMinIdle"public static final String"Sets the minimum number of instances allowed in the producer pool before the evictor thread (if active) spawns new objects."public static final String"camel.component.netty.receiveBufferSize"public static final String"The TCP/UDP buffer sizes to be used during inbound communication. Size is bytes."public static final String"camel.component.netty.receiveBufferSizePredictor"public static final String"Configures the buffer size predictor. See details at Jetty documentation and this mail thread."public static final String"camel.component.netty.requestTimeout"public static final String"Allows to use a timeout for the Netty producer when calling a remote server. By default no timeout is in use. The value is in milli seconds, so eg 30000 is 30 seconds. The requestTimeout is using Netty\'s ReadTimeoutHandler to trigger the timeout."public static final String"camel.component.netty.reuseAddress"public static final String"Setting to facilitate socket multiplexing"public static final String"camel.component.netty.reuseChannel"public static final String"This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well."public static final String"camel.component.netty.securityProvider"public static final String"Security provider to be used for payload encryption. Defaults to SunX509 if not set."public static final String"camel.component.netty.sendBufferSize"public static final String"The TCP/UDP buffer sizes to be used during outbound communication. Size is bytes."public static final String"camel.component.netty.sslClientCertHeaders"public static final String"When enabled and in SSL mode, then the Netty consumer will enrich the Camel Message with headers having information about the client certificate such as subject name, issuer name, serial number, and the valid date range."public static final String"camel.component.netty.ssl"public static final String"camel.component.netty.sslContextParameters"public static final String"To configure security using SSLContextParameters"public static final String"Setting to specify whether SSL encryption is applied to this endpoint"public static final String"camel.component.netty.sslHandler"public static final String"Reference to a class that could be used to return an SSL Handler"public static final String"camel.component.netty.sync"public static final String"Setting to set endpoint as one-way or request-response"public static final String"camel.component.netty.tcpNoDelay"public static final String"Setting to improve TCP protocol performance"public static final String"camel.component.netty.textline"public static final String"Only used for TCP. If no codec is specified, you can use this flag to indicate a text line based codec; if not specified or the value is false, then Object Serialization is assumed over TCP - however only Strings are allowed to be serialized by default."public static final String"camel.component.netty.transferExchange"public static final String"Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.component.netty.trustStoreFile"public static final String"Server side certificate keystore to be used for encryption"public static final String"camel.component.netty.trustStoreResource"public static final String"Server side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.component.netty.udpByteArrayCodec"public static final String"For UDP only. If enabled the using byte array codec instead of Java serialization protocol."public static final String"camel.component.netty.udpConnectionlessSending"public static final String"This option supports connection less udp sending which is a real fire and forget. A connected udp send receive the PortUnreachableException if no one is listen on the receiving port."public static final String"camel.component.netty.unixDomainSocketPath"public static final String"Path to unix domain socket to use instead of inet socket. Host and port parameters will not be used, however required. It is ok to set dummy values for them. Must be used with nativeTransport=true and clientMode=false."public static final String"camel.component.netty.useByteBuf"public static final String"If the useByteBuf is true, netty producer will turn the message body into ByteBuf before sending it out."public static final String"camel.component.netty.useGlobalSslContextParameters"public static final String"Enable usage of global SSL context parameters."public static final String"camel.component.netty.workerCount"public static final String"When netty works on nio mode, it uses default workerCount parameter from Netty (which is cpu_core_threads x 2). User can use this option to override the default workerCount from Netty."public static final String"camel.component.netty.workerGroup"public static final String"To use a explicit EventLoopGroup as the boss thread pool. For example to share a thread pool with multiple consumers or producers. By default each consumer or producer has their own worker pool with 2 x cpu count core threads."public static final String"camel.sink.endpoint.allowDefaultCodec"public static final String"The netty component installs a default codec if both, encoder/decoder is null and textline is false. Setting allowDefaultCodec to false prevents the netty component from installing a default codec as the first element in the filter chain."public static final String"camel.sink.endpoint.allowSerializedHeaders"public static final String"Only used for TCP when transferExchange is true. When set to true, serializable objects in headers and properties will be added to the exchange. Otherwise Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.sink.endpoint.autoAppendDelimiter"public static final String"Whether or not to auto append missing end delimiter when sending using the textline codec."public static final String"camel.sink.endpoint.channelGroup"public static final String"To use a explicit ChannelGroup."public static final String"camel.sink.endpoint.clientInitializerFactory"public static final String"To use a custom ClientInitializerFactory"public static final String"camel.sink.endpoint.connectTimeout"public static final String"Time to wait for a socket connection to be available. Value is in milliseconds."public static final String"camel.sink.endpoint.correlationManager"public static final String"To use a custom correlation manager to manage how request and reply messages are mapped when using request/reply with the netty producer. This should only be used if you have a way to map requests together with replies such as if there is correlation ids in both the request and reply messages. This can be used if you want to multiplex concurrent messages on the same channel (aka connection) in netty. When doing this you must have a way to correlate the request and reply messages so you can store the right reply on the inflight Camel Exchange before its continued routed. We recommend extending the TimeoutCorrelationManagerSupport when you build custom correlation managers. This provides support for timeout and other complexities you otherwise would need to implement as well. See also the producerPoolEnabled option for more details."public static final String"camel.sink.endpoint.decoderMaxLineLength"public static final String"The max line length to use for the textline codec."public static final String"camel.sink.endpoint.decoders"public static final String"A list of decoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.sink.endpoint.delimiter"public static final String"LINE"public static final String"The delimiter to use for the textline codec. Possible values are LINE and NULL. One of: [LINE] [NULL]"public static final String"camel.sink.endpoint.disconnect"public static final String"Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer."public static final String"camel.sink.endpoint.enabledProtocols"public static final String"TLSv1.2,TLSv1.3"public static final String"Which protocols to enable when using SSL"public static final String"camel.sink.endpoint.encoders"public static final String"A list of encoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.sink.endpoint.encoding"public static final String"The encoding (a charset name) to use for the textline codec. If not provided, Camel will use the JVM default Charset."public static final String"camel.sink.endpoint.hostnameVerification"public static final String"To enable/disable hostname verification on SSLEngine"public static final String"camel.sink.endpoint.keepAlive"public static final String"Setting to ensure socket is not closed due to inactivity"public static final String"camel.sink.endpoint.keyStoreFile"public static final String"Client side certificate keystore to be used for encryption"public static final String"camel.sink.endpoint.keyStoreFormat"public static final String"Keystore format to be used for payload encryption. Defaults to JKS if not set"public static final String"camel.sink.endpoint.keyStoreResource"public static final String"Client side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.sink.endpoint.lazyChannelCreation"public static final String"Channels can be lazily created to avoid exceptions, if the remote server is not up and running when the Camel producer is started."public static final String"camel.sink.endpoint.lazyStartProducer"public static final String"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."public static final String"camel.sink.endpoint.nativeTransport"public static final String"Whether to use native transport instead of NIO. Native transport takes advantage of the host operating system and is only supported on some platforms. You need to add the netty JAR for the host operating system you are using. See more details at: http://netty.io/wiki/native-transports.html"public static final String"camel.sink.endpoint.options"public static final String"Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used."public static final String"camel.sink.endpoint.passphrase"public static final String"Password setting to use in order to encrypt/decrypt payloads sent using SSH"public static final String"camel.sink.endpoint.producerPoolBlockWhenExhausted"public static final String"Sets the value for the blockWhenExhausted configuration attribute. It determines whether to block when the borrowObject() method is invoked when the pool is exhausted (the maximum number of active objects has been reached)."public static final String"camel.sink.endpoint.producerPoolEnabled"public static final String"Whether producer pool is enabled or not. Important: If you turn this off then a single shared connection is used for the producer, also if you are doing request/reply. That means there is a potential issue with interleaved responses if replies comes back out-of-order. Therefore you need to have a correlation id in both the request and reply messages so you can properly correlate the replies to the Camel callback that is responsible for continue processing the message in Camel. To do this you need to implement NettyCamelStateCorrelationManager as correlation manager and configure it via the correlationManager option. See also the correlationManager option for more details."public static final String"camel.sink.endpoint.producerPoolMaxIdle"public static final String"Sets the cap on the number of idle instances in the pool."public static final String"camel.sink.endpoint.producerPoolMaxTotal"public static final String"Sets the cap on the number of objects that can be allocated by the pool (checked out to clients, or idle awaiting checkout) at a given time. Use a negative value for no limit."public static final String"camel.sink.endpoint.producerPoolMaxWait"public static final String"Sets the maximum duration (value in millis) the borrowObject() method should block before throwing an exception when the pool is exhausted and producerPoolBlockWhenExhausted is true. When less than 0, the borrowObject() method may block indefinitely."public static final String"camel.sink.endpoint.producerPoolMinEvictableIdle"public static final String"Sets the minimum amount of time (value in millis) an object may sit idle in the pool before it is eligible for eviction by the idle object evictor."public static final String"camel.sink.endpoint.producerPoolMinIdle"public static final String"Sets the minimum number of instances allowed in the producer pool before the evictor thread (if active) spawns new objects."public static final String"camel.sink.endpoint.receiveBufferSize"public static final String"The TCP/UDP buffer sizes to be used during inbound communication. Size is bytes."public static final String"camel.sink.endpoint.receiveBufferSizePredictor"public static final String"Configures the buffer size predictor. See details at Jetty documentation and this mail thread."public static final String"camel.sink.endpoint.requestTimeout"public static final String"Allows to use a timeout for the Netty producer when calling a remote server. By default no timeout is in use. The value is in milli seconds, so eg 30000 is 30 seconds. The requestTimeout is using Netty\'s ReadTimeoutHandler to trigger the timeout."public static final String"camel.sink.endpoint.reuseAddress"public static final String"Setting to facilitate socket multiplexing"public static final String"camel.sink.endpoint.reuseChannel"public static final String"This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well."public static final String"camel.sink.endpoint.securityProvider"public static final String"Security provider to be used for payload encryption. Defaults to SunX509 if not set."public static final String"camel.sink.endpoint.sendBufferSize"public static final String"The TCP/UDP buffer sizes to be used during outbound communication. Size is bytes."public static final String"camel.sink.endpoint.sslClientCertHeaders"public static final String"When enabled and in SSL mode, then the Netty consumer will enrich the Camel Message with headers having information about the client certificate such as subject name, issuer name, serial number, and the valid date range."public static final String"camel.sink.endpoint.ssl"public static final String"camel.sink.endpoint.sslContextParameters"public static final String"To configure security using SSLContextParameters"public static final String"Setting to specify whether SSL encryption is applied to this endpoint"public static final String"camel.sink.endpoint.sslHandler"public static final String"Reference to a class that could be used to return an SSL Handler"public static final String"camel.sink.endpoint.sync"public static final String"Setting to set endpoint as one-way or request-response"public static final String"camel.sink.endpoint.synchronous"public static final String"Sets whether synchronous processing should be strictly used"public static final String"camel.sink.endpoint.tcpNoDelay"public static final String"Setting to improve TCP protocol performance"public static final String"camel.sink.endpoint.textline"public static final String"Only used for TCP. If no codec is specified, you can use this flag to indicate a text line based codec; if not specified or the value is false, then Object Serialization is assumed over TCP - however only Strings are allowed to be serialized by default."public static final String"camel.sink.endpoint.transferExchange"public static final String"Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.sink.endpoint.trustStoreFile"public static final String"Server side certificate keystore to be used for encryption"public static final String"camel.sink.endpoint.trustStoreResource"public static final String"Server side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.sink.endpoint.udpByteArrayCodec"public static final String"For UDP only. If enabled the using byte array codec instead of Java serialization protocol."public static final String"camel.sink.endpoint.udpConnectionlessSending"public static final String"This option supports connection less udp sending which is a real fire and forget. A connected udp send receive the PortUnreachableException if no one is listen on the receiving port."public static final String"camel.sink.endpoint.unixDomainSocketPath"public static final String"Path to unix domain socket to use instead of inet socket. Host and port parameters will not be used, however required. It is ok to set dummy values for them. Must be used with nativeTransport=true and clientMode=false."public static final String"camel.sink.endpoint.useByteBuf"public static final String"If the useByteBuf is true, netty producer will turn the message body into ByteBuf before sending it out."public static final String"camel.sink.endpoint.workerCount"public static final String"When netty works on nio mode, it uses default workerCount parameter from Netty (which is cpu_core_threads x 2). User can use this option to override the default workerCount from Netty."public static final String"camel.sink.endpoint.workerGroup"public static final String"To use a explicit EventLoopGroup as the boss thread pool. For example to share a thread pool with multiple consumers or producers. By default each consumer or producer has their own worker pool with 2 x cpu count core threads."public static final String"camel.sink.path.host"public static final String"The hostname. For the consumer the hostname is localhost or 0.0.0.0. For the producer the hostname is the remote host to connect to"public static final String"camel.sink.path.port"public static final String"The host port number"public static final String"camel.sink.path.protocol"public static final String"The protocol to use which can be tcp or udp. One of: [tcp] [udp]" -
org.apache.camel.kafkaconnector.netty.CamelNettySourceConnectorConfigModifier and TypeConstant FieldValue
public static final String"camel.component.netty.allowDefaultCodec"public static final String"The netty component installs a default codec if both, encoder/decoder is null and textline is false. Setting allowDefaultCodec to false prevents the netty component from installing a default codec as the first element in the filter chain."public static final String"camel.component.netty.allowSerializedHeaders"public static final String"Only used for TCP when transferExchange is true. When set to true, serializable objects in headers and properties will be added to the exchange. Otherwise Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.component.netty.autoAppendDelimiter"public static final String"Whether or not to auto append missing end delimiter when sending using the textline codec."public static final String"camel.component.netty.autowiredEnabled"public static final String"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."public static final String"camel.component.netty.backlog"public static final String"Allows to configure a backlog for netty consumer (server). Note the backlog is just a best effort depending on the OS. Setting this option to a value such as 200, 500 or 1000, tells the TCP stack how long the accept queue can be If this option is not configured, then the backlog depends on OS setting."public static final String"camel.component.netty.bossCount"public static final String"When netty works on nio mode, it uses default bossCount parameter from Netty, which is 1. User can use this option to override the default bossCount from Netty"public static final String"camel.component.netty.bossGroup"public static final String"Set the BossGroup which could be used for handling the new connection of the server side across the NettyEndpoint"public static final String"camel.component.netty.bridgeErrorHandler"public static final String"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."public static final String"camel.component.netty.broadcast"public static final String"Setting to choose Multicast over UDP"public static final String"camel.component.netty.channelGroup"public static final String"To use a explicit ChannelGroup."public static final String"camel.component.netty.clientMode"public static final String"If the clientMode is true, netty consumer will connect the address as a TCP client."public static final String"camel.component.netty.configuration"public static final String"To use the NettyConfiguration as configuration when creating endpoints."public static final String"camel.component.netty.decoderMaxLineLength"public static final String"The max line length to use for the textline codec."public static final String"camel.component.netty.decoders"public static final String"A list of decoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.component.netty.delimiter"public static final String"LINE"public static final String"The delimiter to use for the textline codec. Possible values are LINE and NULL. One of: [LINE] [NULL]"public static final String"camel.component.netty.disconnect"public static final String"Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer."public static final String"camel.component.netty.disconnectOnNoReply"public static final String"If sync is enabled then this option dictates NettyConsumer if it should disconnect where there is no reply to send back."public static final String"camel.component.netty.enabledProtocols"public static final String"TLSv1.2,TLSv1.3"public static final String"Which protocols to enable when using SSL"public static final String"camel.component.netty.encoders"public static final String"A list of encoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.component.netty.encoding"public static final String"The encoding (a charset name) to use for the textline codec. If not provided, Camel will use the JVM default Charset."public static final String"camel.component.netty.executorService"public static final String"To use the given EventExecutorGroup."public static final String"camel.component.netty.hostnameVerification"public static final String"To enable/disable hostname verification on SSLEngine"public static final String"camel.component.netty.keepAlive"public static final String"Setting to ensure socket is not closed due to inactivity"public static final String"camel.component.netty.keyStoreFile"public static final String"Client side certificate keystore to be used for encryption"public static final String"camel.component.netty.keyStoreFormat"public static final String"Keystore format to be used for payload encryption. Defaults to JKS if not set"public static final String"camel.component.netty.keyStoreResource"public static final String"Client side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.component.netty.maximumPoolSize"public static final String"Sets a maximum thread pool size for the netty consumer ordered thread pool. The default size is 2 x cpu_core plus 1. Setting this value to eg 10 will then use 10 threads unless 2 x cpu_core plus 1 is a higher value, which then will override and be used. For example if there are 8 cores, then the consumer thread pool will be 17. This thread pool is used to route messages received from Netty by Camel. We use a separate thread pool to ensure ordering of messages and also in case some messages will block, then nettys worker threads (event loop) wont be affected."public static final String"camel.component.netty.nativeTransport"public static final String"Whether to use native transport instead of NIO. Native transport takes advantage of the host operating system and is only supported on some platforms. You need to add the netty JAR for the host operating system you are using. See more details at: http://netty.io/wiki/native-transports.html"public static final String"camel.component.netty.needClientAuth"public static final String"Configures whether the server needs client authentication when using SSL."public static final String"camel.component.netty.nettyServerBootstrapFactory"public static final String"To use a custom NettyServerBootstrapFactory"public static final String"camel.component.netty.networkInterface"public static final String"When using UDP then this option can be used to specify a network interface by its name, such as eth0 to join a multicast group."public static final String"camel.component.netty.noReplyLogLevel"public static final String"WARN"public static final String"If sync is enabled this option dictates NettyConsumer which logging level to use when logging a there is no reply to send back. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]"public static final String"camel.component.netty.options"public static final String"Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used."public static final String"camel.component.netty.passphrase"public static final String"Password setting to use in order to encrypt/decrypt payloads sent using SSH"public static final String"camel.component.netty.receiveBufferSize"public static final String"The TCP/UDP buffer sizes to be used during inbound communication. Size is bytes."public static final String"camel.component.netty.receiveBufferSizePredictor"public static final String"Configures the buffer size predictor. See details at Jetty documentation and this mail thread."public static final String"camel.component.netty.reconnect"public static final String"Used only in clientMode in consumer, the consumer will attempt to reconnect on disconnection if this is enabled"public static final String"camel.component.netty.reconnectInterval"public static final String"Used if reconnect and clientMode is enabled. The interval in milli seconds to attempt reconnection"public static final String"camel.component.netty.reuseAddress"public static final String"Setting to facilitate socket multiplexing"public static final String"camel.component.netty.reuseChannel"public static final String"This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well."public static final String"camel.component.netty.securityProvider"public static final String"Security provider to be used for payload encryption. Defaults to SunX509 if not set."public static final String"camel.component.netty.sendBufferSize"public static final String"The TCP/UDP buffer sizes to be used during outbound communication. Size is bytes."public static final String"camel.component.netty.serverClosedChannelExceptionCaughtLogLevel"public static final String"DEBUG"public static final String"If the server (NettyConsumer) catches an java.nio.channels.ClosedChannelException then its logged using this logging level. This is used to avoid logging the closed channel exceptions, as clients can disconnect abruptly and then cause a flood of closed exceptions in the Netty server. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]"public static final String"camel.component.netty.serverExceptionCaughtLogLevel"public static final String"WARN"public static final String"If the server (NettyConsumer) catches an exception then its logged using this logging level. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]"public static final String"camel.component.netty.serverInitializerFactory"public static final String"To use a custom ServerInitializerFactory"public static final String"camel.component.netty.sslClientCertHeaders"public static final String"When enabled and in SSL mode, then the Netty consumer will enrich the Camel Message with headers having information about the client certificate such as subject name, issuer name, serial number, and the valid date range."public static final String"camel.component.netty.ssl"public static final String"camel.component.netty.sslContextParameters"public static final String"To configure security using SSLContextParameters"public static final String"Setting to specify whether SSL encryption is applied to this endpoint"public static final String"camel.component.netty.sslHandler"public static final String"Reference to a class that could be used to return an SSL Handler"public static final String"camel.component.netty.sync"public static final String"Setting to set endpoint as one-way or request-response"public static final String"camel.component.netty.tcpNoDelay"public static final String"Setting to improve TCP protocol performance"public static final String"camel.component.netty.textline"public static final String"Only used for TCP. If no codec is specified, you can use this flag to indicate a text line based codec; if not specified or the value is false, then Object Serialization is assumed over TCP - however only Strings are allowed to be serialized by default."public static final String"camel.component.netty.transferExchange"public static final String"Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.component.netty.trustStoreFile"public static final String"Server side certificate keystore to be used for encryption"public static final String"camel.component.netty.trustStoreResource"public static final String"Server side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.component.netty.udpByteArrayCodec"public static final String"For UDP only. If enabled the using byte array codec instead of Java serialization protocol."public static final String"camel.component.netty.unixDomainSocketPath"public static final String"Path to unix domain socket to use instead of inet socket. Host and port parameters will not be used, however required. It is ok to set dummy values for them. Must be used with nativeTransport=true and clientMode=false."public static final String"camel.component.netty.useGlobalSslContextParameters"public static final String"Enable usage of global SSL context parameters."public static final String"camel.component.netty.usingExecutorService"public static final String"Whether to use ordered thread pool, to ensure events are processed orderly on the same channel."public static final String"camel.component.netty.workerCount"public static final String"When netty works on nio mode, it uses default workerCount parameter from Netty (which is cpu_core_threads x 2). User can use this option to override the default workerCount from Netty."public static final String"camel.component.netty.workerGroup"public static final String"To use a explicit EventLoopGroup as the boss thread pool. For example to share a thread pool with multiple consumers or producers. By default each consumer or producer has their own worker pool with 2 x cpu count core threads."public static final String"camel.source.endpoint.allowDefaultCodec"public static final String"The netty component installs a default codec if both, encoder/decoder is null and textline is false. Setting allowDefaultCodec to false prevents the netty component from installing a default codec as the first element in the filter chain."public static final String"camel.source.endpoint.allowSerializedHeaders"public static final String"Only used for TCP when transferExchange is true. When set to true, serializable objects in headers and properties will be added to the exchange. Otherwise Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.source.endpoint.autoAppendDelimiter"public static final String"Whether or not to auto append missing end delimiter when sending using the textline codec."public static final String"camel.source.endpoint.backlog"public static final String"Allows to configure a backlog for netty consumer (server). Note the backlog is just a best effort depending on the OS. Setting this option to a value such as 200, 500 or 1000, tells the TCP stack how long the accept queue can be If this option is not configured, then the backlog depends on OS setting."public static final String"camel.source.endpoint.bossCount"public static final String"When netty works on nio mode, it uses default bossCount parameter from Netty, which is 1. User can use this option to override the default bossCount from Netty"public static final String"camel.source.endpoint.bossGroup"public static final String"Set the BossGroup which could be used for handling the new connection of the server side across the NettyEndpoint"public static final String"camel.source.endpoint.bridgeErrorHandler"public static final String"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."public static final String"camel.source.endpoint.broadcast"public static final String"Setting to choose Multicast over UDP"public static final String"camel.source.endpoint.channelGroup"public static final String"To use a explicit ChannelGroup."public static final String"camel.source.endpoint.clientMode"public static final String"If the clientMode is true, netty consumer will connect the address as a TCP client."public static final String"camel.source.endpoint.decoderMaxLineLength"public static final String"The max line length to use for the textline codec."public static final String"camel.source.endpoint.decoders"public static final String"A list of decoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.source.endpoint.delimiter"public static final String"LINE"public static final String"The delimiter to use for the textline codec. Possible values are LINE and NULL. One of: [LINE] [NULL]"public static final String"camel.source.endpoint.disconnect"public static final String"Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer."public static final String"camel.source.endpoint.disconnectOnNoReply"public static final String"If sync is enabled then this option dictates NettyConsumer if it should disconnect where there is no reply to send back."public static final String"camel.source.endpoint.enabledProtocols"public static final String"TLSv1.2,TLSv1.3"public static final String"Which protocols to enable when using SSL"public static final String"camel.source.endpoint.encoders"public static final String"A list of encoders to be used. You can use a String which have values separated by comma, and have the values be looked up in the Registry. Just remember to prefix the value with # so Camel knows it should lookup."public static final String"camel.source.endpoint.encoding"public static final String"The encoding (a charset name) to use for the textline codec. If not provided, Camel will use the JVM default Charset."public static final String"camel.source.endpoint.exceptionHandler"public static final String"To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored."public static final String"camel.source.endpoint.exchangePattern"public static final String"Sets the exchange pattern when the consumer creates an exchange. One of: [InOnly] [InOut]"public static final String"camel.source.endpoint.hostnameVerification"public static final String"To enable/disable hostname verification on SSLEngine"public static final String"camel.source.endpoint.keepAlive"public static final String"Setting to ensure socket is not closed due to inactivity"public static final String"camel.source.endpoint.keyStoreFile"public static final String"Client side certificate keystore to be used for encryption"public static final String"camel.source.endpoint.keyStoreFormat"public static final String"Keystore format to be used for payload encryption. Defaults to JKS if not set"public static final String"camel.source.endpoint.keyStoreResource"public static final String"Client side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.source.endpoint.nativeTransport"public static final String"Whether to use native transport instead of NIO. Native transport takes advantage of the host operating system and is only supported on some platforms. You need to add the netty JAR for the host operating system you are using. See more details at: http://netty.io/wiki/native-transports.html"public static final String"camel.source.endpoint.needClientAuth"public static final String"Configures whether the server needs client authentication when using SSL."public static final String"camel.source.endpoint.nettyServerBootstrapFactory"public static final String"To use a custom NettyServerBootstrapFactory"public static final String"camel.source.endpoint.networkInterface"public static final String"When using UDP then this option can be used to specify a network interface by its name, such as eth0 to join a multicast group."public static final String"camel.source.endpoint.noReplyLogLevel"public static final String"WARN"public static final String"If sync is enabled this option dictates NettyConsumer which logging level to use when logging a there is no reply to send back. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]"public static final String"camel.source.endpoint.options"public static final String"Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used."public static final String"camel.source.endpoint.passphrase"public static final String"Password setting to use in order to encrypt/decrypt payloads sent using SSH"public static final String"camel.source.endpoint.receiveBufferSize"public static final String"The TCP/UDP buffer sizes to be used during inbound communication. Size is bytes."public static final String"camel.source.endpoint.receiveBufferSizePredictor"public static final String"Configures the buffer size predictor. See details at Jetty documentation and this mail thread."public static final String"camel.source.endpoint.reconnect"public static final String"Used only in clientMode in consumer, the consumer will attempt to reconnect on disconnection if this is enabled"public static final String"camel.source.endpoint.reconnectInterval"public static final String"Used if reconnect and clientMode is enabled. The interval in milli seconds to attempt reconnection"public static final String"camel.source.endpoint.reuseAddress"public static final String"Setting to facilitate socket multiplexing"public static final String"camel.source.endpoint.reuseChannel"public static final String"This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well."public static final String"camel.source.endpoint.securityProvider"public static final String"Security provider to be used for payload encryption. Defaults to SunX509 if not set."public static final String"camel.source.endpoint.sendBufferSize"public static final String"The TCP/UDP buffer sizes to be used during outbound communication. Size is bytes."public static final String"camel.source.endpoint.serverClosedChannelExceptionCaughtLogLevel"public static final String"DEBUG"public static final String"If the server (NettyConsumer) catches an java.nio.channels.ClosedChannelException then its logged using this logging level. This is used to avoid logging the closed channel exceptions, as clients can disconnect abruptly and then cause a flood of closed exceptions in the Netty server. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]"public static final String"camel.source.endpoint.serverExceptionCaughtLogLevel"public static final String"WARN"public static final String"If the server (NettyConsumer) catches an exception then its logged using this logging level. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF]"public static final String"camel.source.endpoint.serverInitializerFactory"public static final String"To use a custom ServerInitializerFactory"public static final String"camel.source.endpoint.sslClientCertHeaders"public static final String"When enabled and in SSL mode, then the Netty consumer will enrich the Camel Message with headers having information about the client certificate such as subject name, issuer name, serial number, and the valid date range."public static final String"camel.source.endpoint.ssl"public static final String"camel.source.endpoint.sslContextParameters"public static final String"To configure security using SSLContextParameters"public static final String"Setting to specify whether SSL encryption is applied to this endpoint"public static final String"camel.source.endpoint.sslHandler"public static final String"Reference to a class that could be used to return an SSL Handler"public static final String"camel.source.endpoint.sync"public static final String"Setting to set endpoint as one-way or request-response"public static final String"camel.source.endpoint.synchronous"public static final String"Sets whether synchronous processing should be strictly used"public static final String"camel.source.endpoint.tcpNoDelay"public static final String"Setting to improve TCP protocol performance"public static final String"camel.source.endpoint.textline"public static final String"Only used for TCP. If no codec is specified, you can use this flag to indicate a text line based codec; if not specified or the value is false, then Object Serialization is assumed over TCP - however only Strings are allowed to be serialized by default."public static final String"camel.source.endpoint.transferExchange"public static final String"Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level."public static final String"camel.source.endpoint.trustStoreFile"public static final String"Server side certificate keystore to be used for encryption"public static final String"camel.source.endpoint.trustStoreResource"public static final String"Server side certificate keystore to be used for encryption. Is loaded by default from classpath, but you can prefix with classpath:, file:, or http: to load the resource from different systems."public static final String"camel.source.endpoint.udpByteArrayCodec"public static final String"For UDP only. If enabled the using byte array codec instead of Java serialization protocol."public static final String"camel.source.endpoint.unixDomainSocketPath"public static final String"Path to unix domain socket to use instead of inet socket. Host and port parameters will not be used, however required. It is ok to set dummy values for them. Must be used with nativeTransport=true and clientMode=false."public static final String"camel.source.endpoint.usingExecutorService"public static final String"Whether to use ordered thread pool, to ensure events are processed orderly on the same channel."public static final String"camel.source.endpoint.workerCount"public static final String"When netty works on nio mode, it uses default workerCount parameter from Netty (which is cpu_core_threads x 2). User can use this option to override the default workerCount from Netty."public static final String"camel.source.endpoint.workerGroup"public static final String"To use a explicit EventLoopGroup as the boss thread pool. For example to share a thread pool with multiple consumers or producers. By default each consumer or producer has their own worker pool with 2 x cpu count core threads."public static final String"camel.source.path.host"public static final String"The hostname. For the consumer the hostname is localhost or 0.0.0.0. For the producer the hostname is the remote host to connect to"public static final String"camel.source.path.port"public static final String"The host port number"public static final String"camel.source.path.protocol"public static final String"The protocol to use which can be tcp or udp. One of: [tcp] [udp]"