blob: 6fe30398c53d8aafed942b380d9c60e616a19382 [file] [log] [blame]
{
"connector": {
"class": "org.apache.camel.kafkaconnector.ahcws.CamelAhcwsSinkConnector",
"artifactId": "camel-ahc-ws-kafka-connector",
"groupId": "org.apache.camel.kafkaconnector",
"id": "camel-ahc-ws-sink",
"type": "sink",
"version": "0.7.0",
"description": "Exchange data with external Websocket servers using Async Http Client."
},
"properties": {
"camel.sink.path.httpUri": {
"name": "camel.sink.path.httpUri",
"description": "The URI to use such as http:\/\/hostname:port\/path",
"priority": "HIGH",
"required": "true"
},
"camel.sink.endpoint.bridgeEndpoint": {
"name": "camel.sink.endpoint.bridgeEndpoint",
"description": "If the option is true, then the Exchange.HTTP_URI header is ignored, and use the endpoint's URI for request. You may also set the throwExceptionOnFailure to be false to let the AhcProducer send all the fault response back.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.bufferSize": {
"name": "camel.sink.endpoint.bufferSize",
"description": "The initial in-memory buffer size used when transferring data between Camel and AHC Client.",
"defaultValue": "4096",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.headerFilterStrategy": {
"name": "camel.sink.endpoint.headerFilterStrategy",
"description": "To use a custom HeaderFilterStrategy to filter header to and from Camel message.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.throwExceptionOnFailure": {
"name": "camel.sink.endpoint.throwExceptionOnFailure",
"description": "Option to disable throwing the AhcOperationFailedException in case of failed responses from the remote server. This allows you to get all responses regardless of the HTTP status code.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.transferException": {
"name": "camel.sink.endpoint.transferException",
"description": "If enabled and an Exchange failed processing on the consumer side, and if the caused Exception was send back serialized in the response as a application\/x-java-serialized-object content type (for example using Jetty or Servlet Camel components). On the producer side the exception will be deserialized and thrown as is, instead of the AhcOperationFailedException. The caused exception is required to be serialized. This is by default turned off. If you enable this then be aware that Java will deserialize the incoming data from the request to Java and that can be a potential security risk.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.connectionClose": {
"name": "camel.sink.endpoint.connectionClose",
"description": "Define if the Connection Close header has to be added to HTTP Request. This parameter is false by default",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.cookieHandler": {
"name": "camel.sink.endpoint.cookieHandler",
"description": "Configure a cookie handler to maintain a HTTP session",
"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.useStreaming": {
"name": "camel.sink.endpoint.useStreaming",
"description": "To enable streaming to send data as multiple text fragments.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.binding": {
"name": "camel.sink.endpoint.binding",
"description": "To use a custom AhcBinding which allows to control how to bind between AHC and Camel.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.clientConfig": {
"name": "camel.sink.endpoint.clientConfig",
"description": "To configure the AsyncHttpClient to use a custom com.ning.http.client.AsyncHttpClientConfig instance.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.clientConfigOptions": {
"name": "camel.sink.endpoint.clientConfigOptions",
"description": "To configure the AsyncHttpClientConfig using the key\/values from the Map.",
"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.clientConfigRealmOptions": {
"name": "camel.sink.endpoint.clientConfigRealmOptions",
"description": "To configure the AsyncHttpClientConfig Realm using the key\/values from the Map.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sslContextParameters": {
"name": "camel.sink.endpoint.sslContextParameters",
"description": "Reference to a org.apache.camel.support.jsse.SSLContextParameters in the Registry. This reference overrides any configured SSLContextParameters at the component level. See Using the JSSE Configuration Utility. Note that configuring this option will override any SSL\/TLS configuration options provided through the clientConfig option at the endpoint or component level.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.ahc-ws.lazyStartProducer": {
"name": "camel.component.ahc-ws.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.ahc-ws.allowJavaSerializedObject": {
"name": "camel.component.ahc-ws.allowJavaSerializedObject",
"description": "Whether to allow java serialization when a request uses context-type=application\/x-java-serialized-object This is by default turned off. If you enable this then be aware that Java will deserialize the incoming data from the request to Java and that can be a potential security risk.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.ahc-ws.autowiredEnabled": {
"name": "camel.component.ahc-ws.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.ahc-ws.binding": {
"name": "camel.component.ahc-ws.binding",
"description": "To use a custom AhcBinding which allows to control how to bind between AHC and Camel.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.ahc-ws.client": {
"name": "camel.component.ahc-ws.client",
"description": "To use a custom AsyncHttpClient",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.ahc-ws.clientConfig": {
"name": "camel.component.ahc-ws.clientConfig",
"description": "To configure the AsyncHttpClient to use a custom com.ning.http.client.AsyncHttpClientConfig instance.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.ahc-ws.headerFilterStrategy": {
"name": "camel.component.ahc-ws.headerFilterStrategy",
"description": "To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.ahc-ws.sslContextParameters": {
"name": "camel.component.ahc-ws.sslContextParameters",
"description": "Reference to a org.apache.camel.support.jsse.SSLContextParameters in the Registry. Note that configuring this option will override any SSL\/TLS configuration options provided through the clientConfig option at the endpoint or component level.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.ahc-ws.useGlobalSslContextParameters": {
"name": "camel.component.ahc-ws.useGlobalSslContextParameters",
"description": "Enable usage of global SSL context parameters.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
}
}
}