This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-master in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit 6825bb0ae06fd95586c3230be3e78ea0bec064b5 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Mon Oct 5 03:31:06 2020 +0000 [create-pull-request] automated change --- .../src/main/docs/camel-wordpress-kafka-sink-connector.adoc | 2 +- .../src/main/docs/camel-wordpress-kafka-source-connector.adoc | 2 +- .../wordpress/CamelWordpressSinkConnectorConfig.java | 8 ++++---- .../wordpress/CamelWordpressSourceConnectorConfig.java | 8 ++++---- .../pages/connectors/camel-wordpress-kafka-sink-connector.adoc | 2 +- .../pages/connectors/camel-wordpress-kafka-source-connector.adoc | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-sink-connector.adoc b/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-sink-connector.adoc index 64cc462..c51e4ba 100644 --- a/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-sink-connector.adoc +++ b/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-sink-connector.adoc @@ -43,6 +43,7 @@ The camel-wordpress sink connector supports 24 options, which are listed below. | *camel.sink.endpoint.basicPropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM | *camel.sink.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | MEDIUM | *camel.component.wordpress.apiVersion* | The Wordpress REST API version | "2" | MEDIUM +| *camel.component.wordpress.configuration* | Wordpress configuration | null | MEDIUM | *camel.component.wordpress.criteria* | The criteria to use with complex searches. | null | MEDIUM | *camel.component.wordpress.force* | Whether to bypass trash and force deletion. | false | MEDIUM | *camel.component.wordpress.id* | The entity ID. Should be passed when the operation performed requires a specific entity, e.g. deleting a post | null | MEDIUM @@ -52,7 +53,6 @@ The camel-wordpress sink connector supports 24 options, which are listed below. | *camel.component.wordpress.user* | Authorized user to perform writing operations | null | MEDIUM | *camel.component.wordpress.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 th [...] | *camel.component.wordpress.basicPropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | LOW -| *camel.component.wordpress.configuration* | Wordpress component configuration | null | MEDIUM |=== diff --git a/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-source-connector.adoc b/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-source-connector.adoc index 61eebec..e8d7421 100644 --- a/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-source-connector.adoc +++ b/connectors/camel-wordpress-kafka-connector/src/main/docs/camel-wordpress-kafka-source-connector.adoc @@ -45,6 +45,7 @@ The camel-wordpress source connector supports 26 options, which are listed below | *camel.source.endpoint.basicPropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM | *camel.source.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | MEDIUM | *camel.component.wordpress.apiVersion* | The Wordpress REST API version | "2" | MEDIUM +| *camel.component.wordpress.configuration* | Wordpress configuration | null | MEDIUM | *camel.component.wordpress.criteria* | The criteria to use with complex searches. | null | MEDIUM | *camel.component.wordpress.force* | Whether to bypass trash and force deletion. | false | MEDIUM | *camel.component.wordpress.id* | The entity ID. Should be passed when the operation performed requires a specific entity, e.g. deleting a post | null | MEDIUM @@ -54,7 +55,6 @@ The camel-wordpress source connector supports 26 options, which are listed below | *camel.component.wordpress.user* | Authorized user to perform writing operations | null | MEDIUM | *camel.component.wordpress.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 | *camel.component.wordpress.basicPropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | LOW -| *camel.component.wordpress.configuration* | Wordpress component configuration | null | MEDIUM |=== diff --git a/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSinkConnectorConfig.java b/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSinkConnectorConfig.java index 4640a22..d14b32f 100644 --- a/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSinkConnectorConfig.java +++ b/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSinkConnectorConfig.java @@ -68,6 +68,9 @@ public class CamelWordpressSinkConnectorConfig public static final String CAMEL_SINK_WORDPRESS_COMPONENT_API_VERSION_CONF = "camel.component.wordpress.apiVersion"; public static final String CAMEL_SINK_WORDPRESS_COMPONENT_API_VERSION_DOC = "The Wordpress REST API version"; public static final String CAMEL_SINK_WORDPRESS_COMPONENT_API_VERSION_DEFAULT = "2"; + public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_CONF = "camel.component.wordpress.configuration"; + public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DOC = "Wordpress configuration"; + public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT = null; public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CRITERIA_CONF = "camel.component.wordpress.criteria"; public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CRITERIA_DOC = "The criteria to use with complex searches."; public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CRITERIA_DEFAULT = null; @@ -95,9 +98,6 @@ public class CamelWordpressSinkConnectorConfig public static final String CAMEL_SINK_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_CONF = "camel.component.wordpress.basicPropertyBinding"; public static final String CAMEL_SINK_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DOC = "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities"; public static final Boolean CAMEL_SINK_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT = false; - public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_CONF = "camel.component.wordpress.configuration"; - public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DOC = "Wordpress component configuration"; - public static final String CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT = null; public CamelWordpressSinkConnectorConfig( ConfigDef config, @@ -125,6 +125,7 @@ public class CamelWordpressSinkConnectorConfig conf.define(CAMEL_SINK_WORDPRESS_ENDPOINT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_WORDPRESS_ENDPOINT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_ENDPOINT_BASIC_PROPERTY_BINDING_DOC); conf.define(CAMEL_SINK_WORDPRESS_ENDPOINT_SYNCHRONOUS_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_WORDPRESS_ENDPOINT_SYNCHRONOUS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_ENDPOINT_SYNCHRONOUS_DOC); conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_API_VERSION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_WORDPRESS_COMPONENT_API_VERSION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_API_VERSION_DOC); + conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DOC); conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_CRITERIA_CONF, ConfigDef.Type.STRING, CAMEL_SINK_WORDPRESS_COMPONENT_CRITERIA_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_CRITERIA_DOC); conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_FORCE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_WORDPRESS_COMPONENT_FORCE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_FORCE_DOC); conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SINK_WORDPRESS_COMPONENT_ID_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_ID_DOC); @@ -134,7 +135,6 @@ public class CamelWordpressSinkConnectorConfig conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_USER_CONF, ConfigDef.Type.STRING, CAMEL_SINK_WORDPRESS_COMPONENT_USER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_USER_DOC); conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_LAZY_START_PRODUCER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_WORDPRESS_COMPONENT_LAZY_START_PRODUCER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_LAZY_START_PRODUCER_DOC); conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SINK_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DOC); - conf.define(CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_WORDPRESS_COMPONENT_CONFIGURATION_DOC); return conf; } } \ No newline at end of file diff --git a/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSourceConnectorConfig.java b/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSourceConnectorConfig.java index b142a54..03b2023 100644 --- a/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSourceConnectorConfig.java +++ b/connectors/camel-wordpress-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/wordpress/CamelWordpressSourceConnectorConfig.java @@ -74,6 +74,9 @@ public class CamelWordpressSourceConnectorConfig public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_API_VERSION_CONF = "camel.component.wordpress.apiVersion"; public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_API_VERSION_DOC = "The Wordpress REST API version"; public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_API_VERSION_DEFAULT = "2"; + public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_CONF = "camel.component.wordpress.configuration"; + public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DOC = "Wordpress configuration"; + public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT = null; public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CRITERIA_CONF = "camel.component.wordpress.criteria"; public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CRITERIA_DOC = "The criteria to use with complex searches."; public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CRITERIA_DEFAULT = null; @@ -101,9 +104,6 @@ public class CamelWordpressSourceConnectorConfig public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_CONF = "camel.component.wordpress.basicPropertyBinding"; public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DOC = "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities"; public static final Boolean CAMEL_SOURCE_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT = false; - public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_CONF = "camel.component.wordpress.configuration"; - public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DOC = "Wordpress component configuration"; - public static final String CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT = null; public CamelWordpressSourceConnectorConfig( ConfigDef config, @@ -133,6 +133,7 @@ public class CamelWordpressSourceConnectorConfig conf.define(CAMEL_SOURCE_WORDPRESS_ENDPOINT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_WORDPRESS_ENDPOINT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_ENDPOINT_BASIC_PROPERTY_BINDING_DOC); conf.define(CAMEL_SOURCE_WORDPRESS_ENDPOINT_SYNCHRONOUS_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_WORDPRESS_ENDPOINT_SYNCHRONOUS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_ENDPOINT_SYNCHRONOUS_DOC); conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_API_VERSION_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_WORDPRESS_COMPONENT_API_VERSION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_API_VERSION_DOC); + conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DOC); conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_CRITERIA_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_WORDPRESS_COMPONENT_CRITERIA_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_CRITERIA_DOC); conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_FORCE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_WORDPRESS_COMPONENT_FORCE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_FORCE_DOC); conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_WORDPRESS_COMPONENT_ID_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_ID_DOC); @@ -142,7 +143,6 @@ public class CamelWordpressSourceConnectorConfig conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_USER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_WORDPRESS_COMPONENT_USER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_USER_DOC); conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_BRIDGE_ERROR_HANDLER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_WORDPRESS_COMPONENT_BRIDGE_ERROR_HANDLER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_BRIDGE_ERROR_HANDLER_DOC); conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.LOW, CAMEL_SOURCE_WORDPRESS_COMPONENT_BASIC_PROPERTY_BINDING_DOC); - conf.define(CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WORDPRESS_COMPONENT_CONFIGURATION_DOC); return conf; } } \ No newline at end of file diff --git a/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-sink-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-sink-connector.adoc index 64cc462..c51e4ba 100644 --- a/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-sink-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-sink-connector.adoc @@ -43,6 +43,7 @@ The camel-wordpress sink connector supports 24 options, which are listed below. | *camel.sink.endpoint.basicPropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM | *camel.sink.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | MEDIUM | *camel.component.wordpress.apiVersion* | The Wordpress REST API version | "2" | MEDIUM +| *camel.component.wordpress.configuration* | Wordpress configuration | null | MEDIUM | *camel.component.wordpress.criteria* | The criteria to use with complex searches. | null | MEDIUM | *camel.component.wordpress.force* | Whether to bypass trash and force deletion. | false | MEDIUM | *camel.component.wordpress.id* | The entity ID. Should be passed when the operation performed requires a specific entity, e.g. deleting a post | null | MEDIUM @@ -52,7 +53,6 @@ The camel-wordpress sink connector supports 24 options, which are listed below. | *camel.component.wordpress.user* | Authorized user to perform writing operations | null | MEDIUM | *camel.component.wordpress.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 th [...] | *camel.component.wordpress.basicPropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | LOW -| *camel.component.wordpress.configuration* | Wordpress component configuration | null | MEDIUM |=== diff --git a/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-source-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-source-connector.adoc index 61eebec..e8d7421 100644 --- a/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-source-connector.adoc +++ b/docs/modules/ROOT/pages/connectors/camel-wordpress-kafka-source-connector.adoc @@ -45,6 +45,7 @@ The camel-wordpress source connector supports 26 options, which are listed below | *camel.source.endpoint.basicPropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM | *camel.source.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | MEDIUM | *camel.component.wordpress.apiVersion* | The Wordpress REST API version | "2" | MEDIUM +| *camel.component.wordpress.configuration* | Wordpress configuration | null | MEDIUM | *camel.component.wordpress.criteria* | The criteria to use with complex searches. | null | MEDIUM | *camel.component.wordpress.force* | Whether to bypass trash and force deletion. | false | MEDIUM | *camel.component.wordpress.id* | The entity ID. Should be passed when the operation performed requires a specific entity, e.g. deleting a post | null | MEDIUM @@ -54,7 +55,6 @@ The camel-wordpress source connector supports 26 options, which are listed below | *camel.component.wordpress.user* | Authorized user to perform writing operations | null | MEDIUM | *camel.component.wordpress.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 | *camel.component.wordpress.basicPropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | LOW -| *camel.component.wordpress.configuration* | Wordpress component configuration | null | MEDIUM |===