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 2020/11/04 18:52:43 UTC

[camel] 01/03: Camel-Git: Added correct label to options, some of them are not common.

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

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

commit e9ebe8ec0a92ffdb9b117cd32bc0a0efc4dff587
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 4 19:03:19 2020 +0100

    Camel-Git: Added correct label to options, some of them are not common.
---
 .../java/org/apache/camel/component/git/GitEndpoint.java     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/components/camel-git/src/main/java/org/apache/camel/component/git/GitEndpoint.java b/components/camel-git/src/main/java/org/apache/camel/component/git/GitEndpoint.java
index f06dbc1..0d77d6d 100644
--- a/components/camel-git/src/main/java/org/apache/camel/component/git/GitEndpoint.java
+++ b/components/camel-git/src/main/java/org/apache/camel/component/git/GitEndpoint.java
@@ -41,25 +41,25 @@ public class GitEndpoint extends DefaultEndpoint {
     @Metadata(required = true)
     private String localPath;
 
-    @UriParam
+    @UriParam(label = "producer")
     private String branchName;
 
-    @UriParam
+    @UriParam(label = "producer")
     private String tagName;
 
     @UriParam(enums = "commit,tag,branch", label = "consumer")
     private GitType type;
 
-    @UriParam
+    @UriParam(label = "producer")
     private String username;
 
-    @UriParam
+    @UriParam(label = "producer")
     private String password;
 
-    @UriParam
+    @UriParam(label = "producer")
     private String remotePath;
 
-    @UriParam
+    @UriParam(label = "producer")
     private String remoteName;
 
     // Set to true for backward compatibility , better to set to false (native git behavior)