This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new bcfec6c  Regen
bcfec6c is described below

commit bcfec6c1c916565660efc806a2ae664647b58121
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Sun Sep 1 09:31:01 2019 +0200

    Regen
---
 .../modules/ROOT/pages/bean-component.adoc         | 31 ++++++++++++++++++++
 .../modules/ROOT/pages/bean-language.adoc          | 30 +++++++++++++++++++
 .../modules/ROOT/pages/hl7terser-language.adoc     | 27 +++++++++++++++++
 .../modules/ROOT/pages/mock-component.adoc         | 26 +++++++++++++++++
 .../modules/ROOT/pages/xpath-language.adoc         | 34 ++++++++++++++++++++++
 5 files changed, 148 insertions(+)

diff --git a/docs/components/modules/ROOT/pages/bean-component.adoc 
b/docs/components/modules/ROOT/pages/bean-component.adoc
index dd82b08..a93c7b9 100644
--- a/docs/components/modules/ROOT/pages/bean-component.adoc
+++ b/docs/components/modules/ROOT/pages/bean-component.adoc
@@ -68,6 +68,37 @@ with the following path and query parameters:
 // endpoint options: END
 
 
+// spring-boot-auto-configure options: START
+== Spring Boot Auto-Configuration
+
+When using Spring Boot make sure to use the following Maven dependency to have 
support for auto configuration:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.camel</groupId>
+  <artifactId>camel-bean-starter</artifactId>
+  <version>x.x.x</version>
+  <!-- use the same version as your Camel core version -->
+</dependency>
+----
+
+
+The component supports 5 options, which are listed below.
+
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *camel.component.bean.basic-property-binding* | Whether the component should 
use basic property binding (Camel 2.x) or the newer property binding with 
additional capabilities | false | Boolean
+| *camel.component.bean.cache* | If enabled, Camel will cache the result of 
the first Registry look-up. Cache can be enabled if the bean in the Registry is 
defined as a singleton scope. |  | Boolean
+| *camel.component.bean.enabled* | Whether to enable auto configuration of the 
bean component. This is enabled by default. |  | Boolean
+| *camel.language.bean.enabled* | Whether to enable auto configuration of the 
bean language. This is enabled by default. |  | Boolean
+| *camel.language.bean.trim* | Whether to trim the value to remove leading and 
trailing whitespaces and line breaks | true | Boolean
+|===
+// spring-boot-auto-configure options: END
+
 You can append query options to the URI in the following format,
 `?option=value&option=value&...`
 
diff --git a/docs/components/modules/ROOT/pages/bean-language.adoc 
b/docs/components/modules/ROOT/pages/bean-language.adoc
index 797a95c..0c24e0a 100644
--- a/docs/components/modules/ROOT/pages/bean-language.adoc
+++ b/docs/components/modules/ROOT/pages/bean-language.adoc
@@ -35,6 +35,36 @@ The Bean method language supports 4 options, which are 
listed below.
 |===
 // language options: END
 
+// spring-boot-auto-configure options: START
+== Spring Boot Auto-Configuration
+
+When using Spring Boot make sure to use the following Maven dependency to have 
support for auto configuration:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.camel</groupId>
+  <artifactId>camel-bean-starter</artifactId>
+  <version>x.x.x</version>
+  <!-- use the same version as your Camel core version -->
+</dependency>
+----
+
+
+The component supports 5 options, which are listed below.
+
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *camel.component.bean.basic-property-binding* | Whether the component should 
use basic property binding (Camel 2.x) or the newer property binding with 
additional capabilities | false | Boolean
+| *camel.component.bean.cache* | If enabled, Camel will cache the result of 
the first Registry look-up. Cache can be enabled if the bean in the Registry is 
defined as a singleton scope. |  | Boolean
+| *camel.component.bean.enabled* | Whether to enable auto configuration of the 
bean component. This is enabled by default. |  | Boolean
+| *camel.language.bean.enabled* | Whether to enable auto configuration of the 
bean language. This is enabled by default. |  | Boolean
+| *camel.language.bean.trim* | Whether to trim the value to remove leading and 
trailing whitespaces and line breaks | true | Boolean
+|===
+// spring-boot-auto-configure options: END
 
 [[BeanLanguage-UsingBeanExpressionsinJava]]
 == Using Bean Expressions in Java
diff --git a/docs/components/modules/ROOT/pages/hl7terser-language.adoc 
b/docs/components/modules/ROOT/pages/hl7terser-language.adoc
index 4cfe773..0d0f702 100644
--- a/docs/components/modules/ROOT/pages/hl7terser-language.adoc
+++ b/docs/components/modules/ROOT/pages/hl7terser-language.adoc
@@ -24,6 +24,33 @@ The HL7 Terser language supports 1 options, which are listed 
below.
 |===
 // language options: END
 
+// spring-boot-auto-configure options: START
+== Spring Boot Auto-Configuration
+
+When using Spring Boot make sure to use the following Maven dependency to have 
support for auto configuration:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.camel</groupId>
+  <artifactId>camel-hl7-starter</artifactId>
+  <version>x.x.x</version>
+  <!-- use the same version as your Camel core version -->
+</dependency>
+----
+
+
+The component supports 2 options, which are listed below.
+
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *camel.language.hl7terser.enabled* | Enable terser language | true | Boolean
+| *camel.language.hl7terser.trim* | Whether to trim the value to remove 
leading and trailing whitespaces and line breaks | true | Boolean
+|===
+// spring-boot-auto-configure options: END
 
 == Samples:
 
diff --git a/docs/components/modules/ROOT/pages/mock-component.adoc 
b/docs/components/modules/ROOT/pages/mock-component.adoc
index 888dcab..89f666d 100644
--- a/docs/components/modules/ROOT/pages/mock-component.adoc
+++ b/docs/components/modules/ROOT/pages/mock-component.adoc
@@ -133,7 +133,33 @@ with the following path and query parameters:
 |===
 // endpoint options: END
 
+// spring-boot-auto-configure options: START
+== Spring Boot Auto-Configuration
 
+When using Spring Boot make sure to use the following Maven dependency to have 
support for auto configuration:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.camel</groupId>
+  <artifactId>camel-mock-starter</artifactId>
+  <version>x.x.x</version>
+  <!-- use the same version as your Camel core version -->
+</dependency>
+----
+
+
+The component supports 2 options, which are listed below.
+
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *camel.component.mock.basic-property-binding* | Whether the component should 
use basic property binding (Camel 2.x) or the newer property binding with 
additional capabilities | false | Boolean
+| *camel.component.mock.enabled* | Whether to enable auto configuration of the 
mock component. This is enabled by default. |  | Boolean
+|===
+// spring-boot-auto-configure options: END
 
 == Simple Example
 
diff --git a/docs/components/modules/ROOT/pages/xpath-language.adoc 
b/docs/components/modules/ROOT/pages/xpath-language.adoc
index dedc8f4..2f46b31 100644
--- a/docs/components/modules/ROOT/pages/xpath-language.adoc
+++ b/docs/components/modules/ROOT/pages/xpath-language.adoc
@@ -58,6 +58,40 @@ The XPath language supports 9 options, which are listed 
below.
 |===
 // language options: END
 
+// spring-boot-auto-configure options: START
+== Spring Boot Auto-Configuration
+
+When using Spring Boot make sure to use the following Maven dependency to have 
support for auto configuration:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.camel</groupId>
+  <artifactId>camel-xpath-starter</artifactId>
+  <version>x.x.x</version>
+  <!-- use the same version as your Camel core version -->
+</dependency>
+----
+
+
+The component supports 8 options, which are listed below.
+
+
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *camel.language.xpath.document-type* | Name of class for document type The 
default value is org.w3c.dom.Document |  | String
+| *camel.language.xpath.enabled* | Whether to enable auto configuration of the 
xpath language. This is enabled by default. |  | Boolean
+| *camel.language.xpath.factory-ref* | References to a custom XPathFactory to 
lookup in the registry |  | String
+| *camel.language.xpath.log-namespaces* | Whether to log namespaces which can 
assist during trouble shooting | false | Boolean
+| *camel.language.xpath.object-model* | The XPath object model to use |  | 
String
+| *camel.language.xpath.saxon* | Whether to use Saxon. | false | Boolean
+| *camel.language.xpath.thread-safety* | Whether to enable thread-safety for 
the returned result of the xpath expression. This applies to when using NODESET 
as the result type, and the returned set has multiple elements. In this 
situation there can be thread-safety issues if you process the NODESET 
concurrently such as from a Camel Splitter EIP in parallel processing mode. 
This option prevents concurrency issues by doing defensive copies of the nodes. 
It is recommended to turn this optio [...]
+| *camel.language.xpath.trim* | Whether to trim the value to remove leading 
and trailing whitespaces and line breaks | true | Boolean
+|===
+// spring-boot-auto-configure options: END
+
 == Namespaces
 
 You can easily use namespaces with XPath expressions using the

Reply via email to