You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/11/03 13:19:43 UTC

[camel] 06/15: Added the missing descriptions to parameters

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 8f44bfe9480aac1c92f7a64977cf7374ecc8e7fe
Author: Christofer Dutz <ch...@rivian.com>
AuthorDate: Mon Oct 31 08:45:18 2022 +0100

    Added the missing descriptions to parameters
---
 .../main/java/org/apache/camel/component/plc4x/Plc4XEndpoint.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-plc4x/src/main/java/org/apache/camel/component/plc4x/Plc4XEndpoint.java b/components/camel-plc4x/src/main/java/org/apache/camel/component/plc4x/Plc4XEndpoint.java
index efd8560ec9c..4b9aa36dae2 100644
--- a/components/camel-plc4x/src/main/java/org/apache/camel/component/plc4x/Plc4XEndpoint.java
+++ b/components/camel-plc4x/src/main/java/org/apache/camel/component/plc4x/Plc4XEndpoint.java
@@ -43,13 +43,13 @@ public class Plc4XEndpoint extends DefaultEndpoint {
     @Metadata(required = true, description = "PLC4X connection string for the connection to the target")
     private String driver;
     @UriParam
-    @Metadata(description = "PLC4X field addresses for the tags being read (Format is dependent on the used driver)")
+    @Metadata(description = "The tags to read as Map<String,String> containing the tag name associated to its query")
     private Map<String, Object> tags;
     @UriParam
-    @Metadata(description = "TODO: Add a short description here")
+    @Metadata(description = "(Consumer) Query to a trigger. On a rising edge of the trigger, the tags will be read once")
     private String trigger;
     @UriParam
-    @Metadata(description = "TODO: Add a short description here")
+    @Metadata(description = "(Consumer) Interval on which the Trigger should be checked")
     private int period;
 
     public int getPeriod() {