This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch camel-3.4.3 in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit f90f07912ea7116be5fa45ed40d6e92016bed6bc Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Aug 18 15:08:43 2020 +0200 Regen after upgrade --- .../src/main/docs/camel-pgevent-kafka-sink-connector.adoc | 2 +- .../src/main/docs/camel-pgevent-kafka-source-connector.adoc | 2 +- .../src/main/docs/examples/CamelPgeventSinkConnector.properties | 2 +- .../src/main/docs/examples/CamelPgeventSourceConnector.properties | 2 +- .../camel/kafkaconnector/pgevent/CamelPgeventSinkConnectorConfig.java | 2 +- .../kafkaconnector/pgevent/CamelPgeventSourceConnectorConfig.java | 2 +- .../src/main/docs/camel-salesforce-kafka-sink-connector.adoc | 2 +- .../src/main/docs/camel-salesforce-kafka-source-connector.adoc | 2 +- .../kafkaconnector/salesforce/CamelSalesforceSinkConnectorConfig.java | 4 ++-- .../salesforce/CamelSalesforceSourceConnectorConfig.java | 4 ++-- .../src/main/docs/camel-sjms-kafka-source-connector.adoc | 4 ++-- .../camel/kafkaconnector/sjms/CamelSjmsSourceConnectorConfig.java | 4 ++-- .../src/main/docs/camel-sjms2-kafka-source-connector.adoc | 4 ++-- .../camel/kafkaconnector/sjms2/CamelSjms2SourceConnectorConfig.java | 4 ++-- .../ROOT/pages/connectors/camel-pgevent-kafka-sink-connector.adoc | 2 +- .../ROOT/pages/connectors/camel-pgevent-kafka-source-connector.adoc | 2 +- .../ROOT/pages/connectors/camel-salesforce-kafka-sink-connector.adoc | 2 +- .../pages/connectors/camel-salesforce-kafka-source-connector.adoc | 2 +- .../ROOT/pages/connectors/camel-sjms-kafka-source-connector.adoc | 4 ++-- .../ROOT/pages/connectors/camel-sjms2-kafka-source-connector.adoc | 4 ++-- 20 files changed, 28 insertions(+), 28 deletions(-) diff --git a/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-sink-connector.adoc b/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-sink-connector.adoc index baf6bbc..3f6e2d3 100644 --- a/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-sink-connector.adoc +++ b/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-sink-connector.adoc @@ -24,7 +24,7 @@ The camel-pgevent sink connector supports 12 options, which are listed below. | Name | Description | Default | Priority | *camel.sink.path.host* | To connect using hostname and port to the database. | "localhost" | MEDIUM | *camel.sink.path.port* | To connect using hostname and port to the database. | "5432" | MEDIUM -| *camel.sink.path.database* | The database name | null | HIGH +| *camel.sink.path.database* | The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded. | null | HIGH | *camel.sink.path.channel* | The channel name | null | HIGH | *camel.sink.endpoint.datasource* | To connect using the given javax.sql.DataSource instead of using hostname and port. | null | MEDIUM | *camel.sink.endpoint.lazyStartProducer* | Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then cre [...] diff --git a/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-source-connector.adoc b/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-source-connector.adoc index 0bdcca2..2d0d6a1 100644 --- a/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-source-connector.adoc +++ b/connectors/camel-pgevent-kafka-connector/src/main/docs/camel-pgevent-kafka-source-connector.adoc @@ -24,7 +24,7 @@ The camel-pgevent source connector supports 14 options, which are listed below. | Name | Description | Default | Priority | *camel.source.path.host* | To connect using hostname and port to the database. | "localhost" | MEDIUM | *camel.source.path.port* | To connect using hostname and port to the database. | "5432" | MEDIUM -| *camel.source.path.database* | The database name | null | HIGH +| *camel.source.path.database* | The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded. | null | HIGH | *camel.source.path.channel* | The channel name | null | HIGH | *camel.source.endpoint.datasource* | To connect using the given javax.sql.DataSource instead of using hostname and port. | null | MEDIUM | *camel.source.endpoint.bridgeErrorHandler* | Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. | false | MEDIUM diff --git a/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSinkConnector.properties b/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSinkConnector.properties index 7246e1e..dfcd35b 100644 --- a/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSinkConnector.properties +++ b/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSinkConnector.properties @@ -30,6 +30,6 @@ topics= # The channel name camel.sink.path.channel= -# The database name +# The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded. camel.sink.path.database= diff --git a/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSourceConnector.properties b/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSourceConnector.properties index ddfd72c..c2dcf8a 100644 --- a/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSourceConnector.properties +++ b/connectors/camel-pgevent-kafka-connector/src/main/docs/examples/CamelPgeventSourceConnector.properties @@ -30,6 +30,6 @@ topics= # The channel name camel.source.path.channel= -# The database name +# The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded. camel.source.path.database= diff --git a/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSinkConnectorConfig.java b/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSinkConnectorConfig.java index b0e43f0..6c5fdd8 100644 --- a/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSinkConnectorConfig.java +++ b/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSinkConnectorConfig.java @@ -31,7 +31,7 @@ public class CamelPgeventSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_PGEVENT_PATH_PORT_DOC = "To connect using hostname and port to the database."; public static final String CAMEL_SINK_PGEVENT_PATH_PORT_DEFAULT = "5432"; public static final String CAMEL_SINK_PGEVENT_PATH_DATABASE_CONF = "camel.sink.path.database"; - public static final String CAMEL_SINK_PGEVENT_PATH_DATABASE_DOC = "The database name"; + public static final String CAMEL_SINK_PGEVENT_PATH_DATABASE_DOC = "The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded."; public static final String CAMEL_SINK_PGEVENT_PATH_DATABASE_DEFAULT = null; public static final String CAMEL_SINK_PGEVENT_PATH_CHANNEL_CONF = "camel.sink.path.channel"; public static final String CAMEL_SINK_PGEVENT_PATH_CHANNEL_DOC = "The channel name"; diff --git a/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSourceConnectorConfig.java b/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSourceConnectorConfig.java index 262ff77..36163fb 100644 --- a/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSourceConnectorConfig.java +++ b/connectors/camel-pgevent-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/pgevent/CamelPgeventSourceConnectorConfig.java @@ -33,7 +33,7 @@ public class CamelPgeventSourceConnectorConfig public static final String CAMEL_SOURCE_PGEVENT_PATH_PORT_DOC = "To connect using hostname and port to the database."; public static final String CAMEL_SOURCE_PGEVENT_PATH_PORT_DEFAULT = "5432"; public static final String CAMEL_SOURCE_PGEVENT_PATH_DATABASE_CONF = "camel.source.path.database"; - public static final String CAMEL_SOURCE_PGEVENT_PATH_DATABASE_DOC = "The database name"; + public static final String CAMEL_SOURCE_PGEVENT_PATH_DATABASE_DOC = "The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded."; public static final String CAMEL_SOURCE_PGEVENT_PATH_DATABASE_DEFAULT = null; public static final String CAMEL_SOURCE_PGEVENT_PATH_CHANNEL_CONF = "camel.source.path.channel"; public static final String CAMEL_SOURCE_PGEVENT_PATH_CHANNEL_DOC = "The channel name"; diff --git a/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-sink-connector.adoc b/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-sink-connector.adoc index aa8c825..64b92bb 100644 --- a/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-sink-connector.adoc +++ b/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-sink-connector.adoc @@ -91,7 +91,7 @@ The camel-salesforce sink connector supports 113 options, which are listed below | *camel.component.salesforce.notifyForOperation Undelete* | Notify for un-delete operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.notifyForOperation Update* | Notify for update operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.objectMapper* | Custom Jackson ObjectMapper to use when serializing/deserializing Salesforce objects. | null | MEDIUM -| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. | null | MEDIUM +| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. Multiple packages can be separated by comma. | null | LOW | *camel.component.salesforce.rawPayload* | Use raw payload String for request and response (either JSON or XML depending on format), instead of DTOs, false by default | false | MEDIUM | *camel.component.salesforce.reportId* | Salesforce1 Analytics report Id | null | MEDIUM | *camel.component.salesforce.reportMetadata* | Salesforce1 Analytics report metadata for filtering | null | MEDIUM diff --git a/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-source-connector.adoc b/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-source-connector.adoc index 7fbf78e..2a54ef5 100644 --- a/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-source-connector.adoc +++ b/connectors/camel-salesforce-kafka-connector/src/main/docs/camel-salesforce-kafka-source-connector.adoc @@ -94,7 +94,7 @@ The camel-salesforce source connector supports 116 options, which are listed bel | *camel.component.salesforce.notifyForOperation Undelete* | Notify for un-delete operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.notifyForOperation Update* | Notify for update operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.objectMapper* | Custom Jackson ObjectMapper to use when serializing/deserializing Salesforce objects. | null | MEDIUM -| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. | null | MEDIUM +| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. Multiple packages can be separated by comma. | null | LOW | *camel.component.salesforce.rawPayload* | Use raw payload String for request and response (either JSON or XML depending on format), instead of DTOs, false by default | false | MEDIUM | *camel.component.salesforce.reportId* | Salesforce1 Analytics report Id | null | MEDIUM | *camel.component.salesforce.reportMetadata* | Salesforce1 Analytics report metadata for filtering | null | MEDIUM diff --git a/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSinkConnectorConfig.java b/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSinkConnectorConfig.java index 27e5323..e4fa944 100644 --- a/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSinkConnectorConfig.java +++ b/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSinkConnectorConfig.java @@ -234,7 +234,7 @@ public class CamelSalesforceSinkConnectorConfig public static final String CAMEL_SINK_SALESFORCE_COMPONENT_OBJECT_MAPPER_DOC = "Custom Jackson ObjectMapper to use when serializing/deserializing Salesforce objects."; public static final String CAMEL_SINK_SALESFORCE_COMPONENT_OBJECT_MAPPER_DEFAULT = null; public static final String CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_CONF = "camel.component.salesforce.packages"; - public static final String CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_DOC = "In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values."; + public static final String CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_DOC = "In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. Multiple packages can be separated by comma."; public static final String CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_DEFAULT = null; public static final String CAMEL_SINK_SALESFORCE_COMPONENT_RAW_PAYLOAD_CONF = "camel.component.salesforce.rawPayload"; public static final String CAMEL_SINK_SALESFORCE_COMPONENT_RAW_PAYLOAD_DOC = "Use raw payload String for request and response (either JSON or XML depending on format), instead of DTOs, false by default"; @@ -447,7 +447,7 @@ public class CamelSalesforceSinkConnectorConfig conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UNDELETE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UNDELETE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UNDELETE_DOC); conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UPDATE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UPDATE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UPDATE_DOC); conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_OBJECT_MAPPER_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCE_COMPONENT_OBJECT_MAPPER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCE_COMPONENT_OBJECT_MAPPER_DOC); - conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_DOC); + conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SINK_SALESFORCE_COMPONENT_PACKAGES_DOC); conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_RAW_PAYLOAD_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_SALESFORCE_COMPONENT_RAW_PAYLOAD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCE_COMPONENT_RAW_PAYLOAD_DOC); conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_REPORT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCE_COMPONENT_REPORT_ID_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCE_COMPONENT_REPORT_ID_DOC); conf.define(CAMEL_SINK_SALESFORCE_COMPONENT_REPORT_METADATA_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCE_COMPONENT_REPORT_METADATA_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCE_COMPONENT_REPORT_METADATA_DOC); diff --git a/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSourceConnectorConfig.java b/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSourceConnectorConfig.java index 63d7923..8446c69 100644 --- a/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSourceConnectorConfig.java +++ b/connectors/camel-salesforce-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforce/CamelSalesforceSourceConnectorConfig.java @@ -243,7 +243,7 @@ public class CamelSalesforceSourceConnectorConfig public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_OBJECT_MAPPER_DOC = "Custom Jackson ObjectMapper to use when serializing/deserializing Salesforce objects."; public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_OBJECT_MAPPER_DEFAULT = null; public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_CONF = "camel.component.salesforce.packages"; - public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_DOC = "In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values."; + public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_DOC = "In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. Multiple packages can be separated by comma."; public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_DEFAULT = null; public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_RAW_PAYLOAD_CONF = "camel.component.salesforce.rawPayload"; public static final String CAMEL_SOURCE_SALESFORCE_COMPONENT_RAW_PAYLOAD_DOC = "Use raw payload String for request and response (either JSON or XML depending on format), instead of DTOs, false by default"; @@ -459,7 +459,7 @@ public class CamelSalesforceSourceConnectorConfig conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UNDELETE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UNDELETE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UNDELETE_DOC); conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UPDATE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UPDATE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SALESFORCE_COMPONENT_NOTIFY_FOR_OPERATION_UPDATE_DOC); conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_OBJECT_MAPPER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SALESFORCE_COMPONENT_OBJECT_MAPPER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SALESFORCE_COMPONENT_OBJECT_MAPPER_DOC); - conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_DOC); + conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SOURCE_SALESFORCE_COMPONENT_PACKAGES_DOC); conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_RAW_PAYLOAD_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_SALESFORCE_COMPONENT_RAW_PAYLOAD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SALESFORCE_COMPONENT_RAW_PAYLOAD_DOC); conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_REPORT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SALESFORCE_COMPONENT_REPORT_ID_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SALESFORCE_COMPONENT_REPORT_ID_DOC); conf.define(CAMEL_SOURCE_SALESFORCE_COMPONENT_REPORT_METADATA_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SALESFORCE_COMPONENT_REPORT_METADATA_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SALESFORCE_COMPONENT_REPORT_METADATA_DOC); diff --git a/connectors/camel-sjms-kafka-connector/src/main/docs/camel-sjms-kafka-source-connector.adoc b/connectors/camel-sjms-kafka-connector/src/main/docs/camel-sjms-kafka-source-connector.adoc index 7434c58..70f40c6 100644 --- a/connectors/camel-sjms-kafka-connector/src/main/docs/camel-sjms-kafka-source-connector.adoc +++ b/connectors/camel-sjms-kafka-connector/src/main/docs/camel-sjms-kafka-source-connector.adoc @@ -50,8 +50,8 @@ The camel-sjms source connector supports 50 options, which are listed below. | *camel.source.endpoint.errorHandlerLoggingLevel* | Allows to configure the default errorHandler logging level for logging uncaught exceptions. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF] | "WARN" | MEDIUM | *camel.source.endpoint.errorHandlerLogStackTrace* | Allows to control whether stacktraces should be logged or not, by the default errorHandler. | true | MEDIUM | *camel.source.endpoint.transacted* | Specifies whether to use transacted mode | false | MEDIUM -| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | MEDIUM -| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | MEDIUM +| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | LOW +| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | LOW | *camel.source.endpoint.transactionCommitStrategy* | Sets the commit strategy. | null | MEDIUM | *camel.source.endpoint.sharedJMSSession* | Specifies whether to share JMS session with other SJMS endpoints. Turn this off if your route is accessing to multiple JMS providers. If you need transaction against multiple JMS providers, use jms component to leverage XA transaction. | true | MEDIUM | *camel.component.sjms.connectionCount* | The maximum number of connections available to endpoints started under this component | "1" | MEDIUM diff --git a/connectors/camel-sjms-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms/CamelSjmsSourceConnectorConfig.java b/connectors/camel-sjms-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms/CamelSjmsSourceConnectorConfig.java index 273b1e0..25cfbdc 100644 --- a/connectors/camel-sjms-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms/CamelSjmsSourceConnectorConfig.java +++ b/connectors/camel-sjms-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms/CamelSjmsSourceConnectorConfig.java @@ -217,8 +217,8 @@ public class CamelSjmsSourceConnectorConfig conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_ERROR_HANDLER_LOGGING_LEVEL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SJMS_ENDPOINT_ERROR_HANDLER_LOGGING_LEVEL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_ENDPOINT_ERROR_HANDLER_LOGGING_LEVEL_DOC); conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_ERROR_HANDLER_LOG_STACK_TRACE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_SJMS_ENDPOINT_ERROR_HANDLER_LOG_STACK_TRACE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_ENDPOINT_ERROR_HANDLER_LOG_STACK_TRACE_DOC); conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTED_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTED_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTED_DOC); - conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_COUNT_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_COUNT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_COUNT_DOC); - conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_CONF, ConfigDef.Type.LONG, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DOC); + conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_COUNT_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_COUNT_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_COUNT_DOC); + conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_CONF, ConfigDef.Type.LONG, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DOC); conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_COMMIT_STRATEGY_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_COMMIT_STRATEGY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_ENDPOINT_TRANSACTION_COMMIT_STRATEGY_DOC); conf.define(CAMEL_SOURCE_SJMS_ENDPOINT_SHARED_JMSSESSION_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_SJMS_ENDPOINT_SHARED_JMSSESSION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_ENDPOINT_SHARED_JMSSESSION_DOC); conf.define(CAMEL_SOURCE_SJMS_COMPONENT_CONNECTION_COUNT_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SJMS_COMPONENT_CONNECTION_COUNT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS_COMPONENT_CONNECTION_COUNT_DOC); diff --git a/connectors/camel-sjms2-kafka-connector/src/main/docs/camel-sjms2-kafka-source-connector.adoc b/connectors/camel-sjms2-kafka-connector/src/main/docs/camel-sjms2-kafka-source-connector.adoc index d57197a..4469c70 100644 --- a/connectors/camel-sjms2-kafka-connector/src/main/docs/camel-sjms2-kafka-source-connector.adoc +++ b/connectors/camel-sjms2-kafka-connector/src/main/docs/camel-sjms2-kafka-source-connector.adoc @@ -53,8 +53,8 @@ The camel-sjms2 source connector supports 53 options, which are listed below. | *camel.source.endpoint.errorHandlerLoggingLevel* | Allows to configure the default errorHandler logging level for logging uncaught exceptions. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF] | "WARN" | MEDIUM | *camel.source.endpoint.errorHandlerLogStackTrace* | Allows to control whether stacktraces should be logged or not, by the default errorHandler. | true | MEDIUM | *camel.source.endpoint.transacted* | Specifies whether to use transacted mode | false | MEDIUM -| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | MEDIUM -| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | MEDIUM +| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | LOW +| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | LOW | *camel.source.endpoint.transactionCommitStrategy* | Sets the commit strategy. | null | MEDIUM | *camel.source.endpoint.sharedJMSSession* | Specifies whether to share JMS session with other SJMS endpoints. Turn this off if your route is accessing to multiple JMS providers. If you need transaction against multiple JMS providers, use jms component to leverage XA transaction. | true | MEDIUM | *camel.component.sjms2.connectionCount* | The maximum number of connections available to endpoints started under this component | "1" | MEDIUM diff --git a/connectors/camel-sjms2-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms2/CamelSjms2SourceConnectorConfig.java b/connectors/camel-sjms2-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms2/CamelSjms2SourceConnectorConfig.java index b312174..c7bc458 100644 --- a/connectors/camel-sjms2-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms2/CamelSjms2SourceConnectorConfig.java +++ b/connectors/camel-sjms2-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/sjms2/CamelSjms2SourceConnectorConfig.java @@ -229,8 +229,8 @@ public class CamelSjms2SourceConnectorConfig conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_ERROR_HANDLER_LOGGING_LEVEL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SJMS2_ENDPOINT_ERROR_HANDLER_LOGGING_LEVEL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_ENDPOINT_ERROR_HANDLER_LOGGING_LEVEL_DOC); conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_ERROR_HANDLER_LOG_STACK_TRACE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_SJMS2_ENDPOINT_ERROR_HANDLER_LOG_STACK_TRACE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_ENDPOINT_ERROR_HANDLER_LOG_STACK_TRACE_DOC); conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTED_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTED_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTED_DOC); - conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_COUNT_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_COUNT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_COUNT_DOC); - conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_CONF, ConfigDef.Type.LONG, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DOC); + conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_COUNT_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_COUNT_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_COUNT_DOC); + conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_CONF, ConfigDef.Type.LONG, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_BATCH_TIMEOUT_DOC); conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_COMMIT_STRATEGY_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_COMMIT_STRATEGY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_ENDPOINT_TRANSACTION_COMMIT_STRATEGY_DOC); conf.define(CAMEL_SOURCE_SJMS2_ENDPOINT_SHARED_JMSSESSION_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_SJMS2_ENDPOINT_SHARED_JMSSESSION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_ENDPOINT_SHARED_JMSSESSION_DOC); conf.define(CAMEL_SOURCE_SJMS2_COMPONENT_CONNECTION_COUNT_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_SJMS2_COMPONENT_CONNECTION_COUNT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_SJMS2_COMPONENT_CONNECTION_COUNT_DOC); diff --git a/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-sink-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-sink-connector.adoc index baf6bbc..3f6e2d3 100644 --- a/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-sink-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-sink-connector.adoc @@ -24,7 +24,7 @@ The camel-pgevent sink connector supports 12 options, which are listed below. | Name | Description | Default | Priority | *camel.sink.path.host* | To connect using hostname and port to the database. | "localhost" | MEDIUM | *camel.sink.path.port* | To connect using hostname and port to the database. | "5432" | MEDIUM -| *camel.sink.path.database* | The database name | null | HIGH +| *camel.sink.path.database* | The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded. | null | HIGH | *camel.sink.path.channel* | The channel name | null | HIGH | *camel.sink.endpoint.datasource* | To connect using the given javax.sql.DataSource instead of using hostname and port. | null | MEDIUM | *camel.sink.endpoint.lazyStartProducer* | Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then cre [...] diff --git a/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-source-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-source-connector.adoc index 0bdcca2..2d0d6a1 100644 --- a/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-source-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-pgevent-kafka-source-connector.adoc @@ -24,7 +24,7 @@ The camel-pgevent source connector supports 14 options, which are listed below. | Name | Description | Default | Priority | *camel.source.path.host* | To connect using hostname and port to the database. | "localhost" | MEDIUM | *camel.source.path.port* | To connect using hostname and port to the database. | "5432" | MEDIUM -| *camel.source.path.database* | The database name | null | HIGH +| *camel.source.path.database* | The database name. The database name can take any characters because it is sent as a quoted identifier. It is part of the endpoint URI, so diacritical marks and non-Latin letters have to be URL encoded. | null | HIGH | *camel.source.path.channel* | The channel name | null | HIGH | *camel.source.endpoint.datasource* | To connect using the given javax.sql.DataSource instead of using hostname and port. | null | MEDIUM | *camel.source.endpoint.bridgeErrorHandler* | Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. | false | MEDIUM diff --git a/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-sink-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-sink-connector.adoc index aa8c825..64b92bb 100644 --- a/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-sink-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-sink-connector.adoc @@ -91,7 +91,7 @@ The camel-salesforce sink connector supports 113 options, which are listed below | *camel.component.salesforce.notifyForOperation Undelete* | Notify for un-delete operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.notifyForOperation Update* | Notify for update operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.objectMapper* | Custom Jackson ObjectMapper to use when serializing/deserializing Salesforce objects. | null | MEDIUM -| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. | null | MEDIUM +| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. Multiple packages can be separated by comma. | null | LOW | *camel.component.salesforce.rawPayload* | Use raw payload String for request and response (either JSON or XML depending on format), instead of DTOs, false by default | false | MEDIUM | *camel.component.salesforce.reportId* | Salesforce1 Analytics report Id | null | MEDIUM | *camel.component.salesforce.reportMetadata* | Salesforce1 Analytics report metadata for filtering | null | MEDIUM diff --git a/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-source-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-source-connector.adoc index 7fbf78e..2a54ef5 100644 --- a/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-source-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-salesforce-kafka-source-connector.adoc @@ -94,7 +94,7 @@ The camel-salesforce source connector supports 116 options, which are listed bel | *camel.component.salesforce.notifyForOperation Undelete* | Notify for un-delete operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.notifyForOperation Update* | Notify for update operation, defaults to false (API version = 29.0) | null | MEDIUM | *camel.component.salesforce.objectMapper* | Custom Jackson ObjectMapper to use when serializing/deserializing Salesforce objects. | null | MEDIUM -| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. | null | MEDIUM +| *camel.component.salesforce.packages* | In what packages are the generated DTO classes. Typically the classes would be generated using camel-salesforce-maven-plugin. Set it if using the generated DTOs to gain the benefit of using short SObject names in parameters/header values. Multiple packages can be separated by comma. | null | LOW | *camel.component.salesforce.rawPayload* | Use raw payload String for request and response (either JSON or XML depending on format), instead of DTOs, false by default | false | MEDIUM | *camel.component.salesforce.reportId* | Salesforce1 Analytics report Id | null | MEDIUM | *camel.component.salesforce.reportMetadata* | Salesforce1 Analytics report metadata for filtering | null | MEDIUM diff --git a/docs/modules/ROOT/pages/connectors/camel-sjms-kafka-source-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-sjms-kafka-source-connector.adoc index 7434c58..70f40c6 100644 --- a/docs/modules/ROOT/pages/connectors/camel-sjms-kafka-source-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-sjms-kafka-source-connector.adoc @@ -50,8 +50,8 @@ The camel-sjms source connector supports 50 options, which are listed below. | *camel.source.endpoint.errorHandlerLoggingLevel* | Allows to configure the default errorHandler logging level for logging uncaught exceptions. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF] | "WARN" | MEDIUM | *camel.source.endpoint.errorHandlerLogStackTrace* | Allows to control whether stacktraces should be logged or not, by the default errorHandler. | true | MEDIUM | *camel.source.endpoint.transacted* | Specifies whether to use transacted mode | false | MEDIUM -| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | MEDIUM -| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | MEDIUM +| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | LOW +| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | LOW | *camel.source.endpoint.transactionCommitStrategy* | Sets the commit strategy. | null | MEDIUM | *camel.source.endpoint.sharedJMSSession* | Specifies whether to share JMS session with other SJMS endpoints. Turn this off if your route is accessing to multiple JMS providers. If you need transaction against multiple JMS providers, use jms component to leverage XA transaction. | true | MEDIUM | *camel.component.sjms.connectionCount* | The maximum number of connections available to endpoints started under this component | "1" | MEDIUM diff --git a/docs/modules/ROOT/pages/connectors/camel-sjms2-kafka-source-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-sjms2-kafka-source-connector.adoc index d57197a..4469c70 100644 --- a/docs/modules/ROOT/pages/connectors/camel-sjms2-kafka-source-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-sjms2-kafka-source-connector.adoc @@ -53,8 +53,8 @@ The camel-sjms2 source connector supports 53 options, which are listed below. | *camel.source.endpoint.errorHandlerLoggingLevel* | Allows to configure the default errorHandler logging level for logging uncaught exceptions. One of: [TRACE] [DEBUG] [INFO] [WARN] [ERROR] [OFF] | "WARN" | MEDIUM | *camel.source.endpoint.errorHandlerLogStackTrace* | Allows to control whether stacktraces should be logged or not, by the default errorHandler. | true | MEDIUM | *camel.source.endpoint.transacted* | Specifies whether to use transacted mode | false | MEDIUM -| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | MEDIUM -| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | MEDIUM +| *camel.source.endpoint.transactionBatchCount* | If transacted sets the number of messages to process before committing a transaction. | -1 | LOW +| *camel.source.endpoint.transactionBatchTimeout* | Sets timeout (in millis) for batch transactions, the value should be 1000 or higher. | 5000L | LOW | *camel.source.endpoint.transactionCommitStrategy* | Sets the commit strategy. | null | MEDIUM | *camel.source.endpoint.sharedJMSSession* | Specifies whether to share JMS session with other SJMS endpoints. Turn this off if your route is accessing to multiple JMS providers. If you need transaction against multiple JMS providers, use jms component to leverage XA transaction. | true | MEDIUM | *camel.component.sjms2.connectionCount* | The maximum number of connections available to endpoints started under this component | "1" | MEDIUM