Repository: camel Updated Branches: refs/heads/master 915b53685 -> 13d16f1db
CAMEL-11144: Add components to component table, add description Signed-off-by: Jens Reimann <jreim...@redhat.com> Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/13d16f1d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/13d16f1d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/13d16f1d Branch: refs/heads/master Commit: 13d16f1dbf6e5da345a07e3852a2790ea1845889 Parents: 915b536 Author: Jens Reimann <jreim...@redhat.com> Authored: Fri Apr 14 10:42:43 2017 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue Apr 18 14:32:50 2017 +0200 ---------------------------------------------------------------------- .../camel/component/milo/client/MiloClientEndpoint.java | 7 +++++-- .../camel/component/milo/server/MiloServerEndpoint.java | 5 ++--- components/readme.adoc | 4 ++-- .../client/springboot/MiloClientComponentConfiguration.java | 3 ++- .../server/springboot/MiloServerComponentConfiguration.java | 2 +- 5 files changed, 12 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/13d16f1d/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientEndpoint.java b/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientEndpoint.java index 371b6a6..ba07ea4 100644 --- a/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientEndpoint.java +++ b/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientEndpoint.java @@ -30,8 +30,11 @@ import org.apache.camel.spi.UriParam; import org.apache.camel.spi.UriPath; import org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId; -@UriEndpoint(firstVersion = "2.19.0", scheme = "milo-client", syntax = "milo-client:endpointUri", title = "Milo based OPC UA Client", - consumerClass = MiloClientConsumer.class, label = "iot") +/** + * Connect to OPC UA servers using the binary protocol for acquiring telemetry + * data + */ +@UriEndpoint(firstVersion = "2.19.0", scheme = "milo-client", syntax = "milo-client:endpointUri", title = "Milo based OPC UA Client", consumerClass = MiloClientConsumer.class, label = "iot") public class MiloClientEndpoint extends DefaultEndpoint implements MiloClientItemConfiguration { /** http://git-wip-us.apache.org/repos/asf/camel/blob/13d16f1d/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerEndpoint.java b/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerEndpoint.java index 4beeb72..a07962d 100644 --- a/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerEndpoint.java +++ b/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerEndpoint.java @@ -28,10 +28,9 @@ import org.apache.camel.spi.UriEndpoint; import org.apache.camel.spi.UriPath; /** - * OPC UA Server based endpoint + * Make telemetry data available as an OPC UA server */ -@UriEndpoint(firstVersion = "2.19.0", scheme = "milo-server", syntax = "milo-server:itemId", title = "OPC UA Server", - consumerClass = MiloServerConsumer.class, label = "iot") +@UriEndpoint(firstVersion = "2.19.0", scheme = "milo-server", syntax = "milo-server:itemId", title = "OPC UA Server", consumerClass = MiloServerConsumer.class, label = "iot") public class MiloServerEndpoint extends DefaultEndpoint { @UriPath http://git-wip-us.apache.org/repos/asf/camel/blob/13d16f1d/components/readme.adoc ---------------------------------------------------------------------- diff --git a/components/readme.adoc b/components/readme.adoc index f5734d4..fbf16b9 100644 --- a/components/readme.adoc +++ b/components/readme.adoc @@ -393,7 +393,7 @@ Number of Components: 231 in 184 JAR artifacts (14 deprecated) `metrics:metricsType:metricsName` | 2.14 | To collect various metrics directly from Camel routes using the DropWizard metrics library. | link:camel-milo/src/main/docs/milo-client-component.adoc[Milo based OPC UA Client] (camel-milo) + -`milo-client:endpointUri` | 2.19 | Camel OPC UA support +`milo-client:endpointUri` | 2.19 | Connect to OPC UA servers using the binary protocol for acquiring telemetry data | link:camel-mina/src/main/docs/mina-component.adoc[Mina] (camel-mina) + `mina:protocol:host:port` | 1.0 | *deprecated* Socket level networking using TCP or UDP with the Apache Mina 1.x library. @@ -456,7 +456,7 @@ Number of Components: 231 in 184 JAR artifacts (14 deprecated) `olingo4:apiName/methodName` | 2.19 | Communicates with OData 4.0 services using Apache Olingo OData API. | link:camel-milo/src/main/docs/milo-server-component.adoc[OPC UA Server] (camel-milo) + -`milo-server:itemId` | 2.19 | OPC UA Server based endpoint +`milo-server:itemId` | 2.19 | Make telemetry data available as an OPC UA server | link:camel-openshift/src/main/docs/openshift-component.adoc[OpenShift] (camel-openshift) + `openshift:clientId` | 2.14 | *deprecated* To manage your Openshift 2.x applications. http://git-wip-us.apache.org/repos/asf/camel/blob/13d16f1d/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java ---------------------------------------------------------------------- diff --git a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java index 7597469..ad0ebed 100644 --- a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java @@ -19,7 +19,8 @@ package org.apache.camel.component.milo.client.springboot; import org.springframework.boot.context.properties.ConfigurationProperties; /** - * Camel OPC UA support + * Connect to OPC UA servers using the binary protocol for acquiring telemetry + * data * * Generated by camel-package-maven-plugin - do not edit this file! */ http://git-wip-us.apache.org/repos/asf/camel/blob/13d16f1d/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java ---------------------------------------------------------------------- diff --git a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java index 0aee3db..14745d8 100644 --- a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java @@ -29,7 +29,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.NestedConfigurationProperty; /** - * OPC UA Server based endpoint + * Make telemetry data available as an OPC UA server * * Generated by camel-package-maven-plugin - do not edit this file! */