This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 443faa2fb0b6870b423a18b4a417b5db54d3e9c1 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Nov 3 13:56:15 2022 +0100 Added correct docs name for docs file in Camel-plc4x Signed-off-by: Andrea Cosentino <[email protected]> --- .../camel-plc4x/src/main/docs/plc4x-component.adoc | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/components/camel-plc4x/src/main/docs/plc4x-component.adoc b/components/camel-plc4x/src/main/docs/plc4x-component.adoc new file mode 100644 index 00000000000..7d3f9dd6adf --- /dev/null +++ b/components/camel-plc4x/src/main/docs/plc4x-component.adoc @@ -0,0 +1,64 @@ += PLC4X Component +:doctitle: PLC4X +:shortname: plc4x +:artifactid: camel-plc4x +:description: Camel PLC4X support +:since: 3.20 +:supportlevel: Preview +:component-header: Both producer and consumer are supported + +*Since Camel {since}* + +*{component-header}* + +The Camel Component for PLC4X allows you to create routes using the PLC4X API to read from a PLC device or write to it. + +== URI Format + +------------------------------ +plc4x://driver[?options] +------------------------------ + +The bucket will be created if it don't already exists. + + You can append query options to the URI in the following format, +?options=value&option2=value&... + + +// component-configure options: START + +// component-configure options: END + +// component options: START +include::partial$component-configure-options.adoc[] +include::partial$component-endpoint-options.adoc[] +// component options: END + +// endpoint options: START + +// endpoint options: END + +// component headers: START +include::partial$component-endpoint-headers.adoc[] +// component headers: END + + +== Dependencies + +Maven users will need to add the following dependency to their pom.xml. + +*pom.xml* + +[source,xml] +--------------------------------------- +<dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-plc4x</artifactId> + <version>${camel-version}</version> +</dependency> +--------------------------------------- + +where `$\{camel-version}` must be replaced by the actual version of Camel. + + + +include::spring-boot:partial$starter.adoc[]
