blob: 37f9e587fda7c6cb936e3089b4648c447ccdda46 [file] [log] [blame]
{
"groups": [
{
"name": "camel.component.mina",
"type": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.customizer",
"type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"sourceMethod": "getCustomizer()"
}
],
"properties": [
{
"name": "camel.component.mina.allow-default-codec",
"type": "java.lang.Boolean",
"description": "The mina component installs a default codec if both, codec is null and textline is false. Setting allowDefaultCodec to false prevents the mina component from installing a default codec as the first element in the filter chain. This is useful in scenarios where another filter must be the first in the filter chain, like the SSL filter.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.auto-start-tls",
"type": "java.lang.Boolean",
"description": "Whether to auto start SSL handshake.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.autowired-enabled",
"type": "java.lang.Boolean",
"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.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.bridge-error-handler",
"type": "java.lang.Boolean",
"description": "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.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.cached-address",
"type": "java.lang.Boolean",
"description": "Whether to create the InetAddress once and reuse. Setting this to false allows to pickup DNS changes in the network.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.client-mode",
"type": "java.lang.Boolean",
"description": "If the clientMode is true, mina consumer will connect the address as a TCP client.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.codec",
"type": "org.apache.mina.filter.codec.ProtocolCodecFactory",
"description": "To use a custom minda codec implementation. The option is a org.apache.mina.filter.codec.ProtocolCodecFactory type.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.configuration",
"type": "org.apache.camel.component.mina.MinaConfiguration",
"description": "To use the shared mina configuration. The option is a org.apache.camel.component.mina.MinaConfiguration type.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.customizer.enabled",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
},
{
"name": "camel.component.mina.decoder-max-line-length",
"type": "java.lang.Integer",
"description": "To set the textline protocol decoder max line length. By default the default value of Mina itself is used which are 1024.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": 1024
},
{
"name": "camel.component.mina.disconnect",
"type": "java.lang.Boolean",
"description": "Whether to disconnect(close) from Mina session right after use. Can be used for both consumer and producer.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.disconnect-on-no-reply",
"type": "java.lang.Boolean",
"description": "If sync is enabled then this option dictates MinaConsumer if it should disconnect where there is no reply to send back.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.enabled",
"type": "java.lang.Boolean",
"description": "Whether to enable auto configuration of the mina component. This is enabled by default.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.encoder-max-line-length",
"type": "java.lang.Integer",
"description": "To set the textline protocol encoder max line length. By default the default value of Mina itself is used which are Integer.MAX_VALUE.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": -1
},
{
"name": "camel.component.mina.encoding",
"type": "java.lang.String",
"description": "You can configure the encoding (a charset name) to use for the TCP textline codec and the UDP protocol. If not provided, Camel will use the JVM default Charset",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.filters",
"type": "java.util.List<org.apache.mina.core.filterchain.IoFilter>",
"description": "You can set a list of Mina IoFilters to use.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.lazy-session-creation",
"type": "java.lang.Boolean",
"description": "Sessions can be lazily created to avoid exceptions, if the remote server is not up and running when the Camel producer is started.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.lazy-start-producer",
"type": "java.lang.Boolean",
"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.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.maximum-pool-size",
"type": "java.lang.Integer",
"description": "Number of worker threads in the worker pool for TCP and UDP",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": 16
},
{
"name": "camel.component.mina.mina-logger",
"type": "java.lang.Boolean",
"description": "You can enable the Apache MINA logging filter. Apache MINA uses slf4j logging at INFO level to log all input and output.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.no-reply-log-level",
"type": "org.apache.camel.LoggingLevel",
"description": "If sync is enabled this option dictates MinaConsumer which logging level to use when logging a there is no reply to send back.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.ordered-thread-pool-executor",
"type": "java.lang.Boolean",
"description": "Whether to use ordered thread pool, to ensure events are processed orderly on the same channel.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.ssl-context-parameters",
"type": "org.apache.camel.support.jsse.SSLContextParameters",
"description": "To configure SSL security. The option is a org.apache.camel.support.jsse.SSLContextParameters type.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.sync",
"type": "java.lang.Boolean",
"description": "Setting to set endpoint as one-way or request-response.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": true
},
{
"name": "camel.component.mina.textline",
"type": "java.lang.Boolean",
"description": "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.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.textline-delimiter",
"type": "org.apache.camel.component.mina.MinaTextLineDelimiter",
"description": "Only used for TCP and if textline=true. Sets the text line delimiter to use. If none provided, Camel will use DEFAULT. This delimiter is used to mark the end of text.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration"
},
{
"name": "camel.component.mina.timeout",
"type": "java.lang.Long",
"description": "You can configure the timeout that specifies how long to wait for a response from a remote server. The timeout unit is in milliseconds, so 60000 is 60 seconds.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": 30000
},
{
"name": "camel.component.mina.transfer-exchange",
"type": "java.lang.Boolean",
"description": "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.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.use-global-ssl-context-parameters",
"type": "java.lang.Boolean",
"description": "Enable usage of global SSL context parameters.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": false
},
{
"name": "camel.component.mina.write-timeout",
"type": "java.lang.Long",
"description": "Maximum amount of time it should take to send data to the MINA session. Default is 10000 milliseconds.",
"sourceType": "org.apache.camel.component.mina.springboot.MinaComponentConfiguration",
"defaultValue": 10000
}
],
"hints": []
}