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 1090f61926bc7683d0209efbf3bd78eac5452456
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Jan 15 11:45:35 2018 +0100

    Camel-AWS SWF: accessKey and secretKey are secret
---
 .../java/org/apache/camel/component/aws/swf/SWFConfiguration.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
 
b/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
index 6d86c29..d756d94 100644
--- 
a/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
+++ 
b/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
@@ -39,9 +39,9 @@ public class SWFConfiguration implements Cloneable {
     private String type;
     @UriParam
     private AmazonSimpleWorkflowClient amazonSWClient;
-    @UriParam
+    @UriParam(label = "security", secret = true)
     private String accessKey;
-    @UriParam
+    @UriParam(label = "security", secret = true)
     private String secretKey;
     @UriParam(label = "producer,workflow", defaultValue = "START", enums = 
"SIGNAL,CANCEL,TERMINATE,GET_STATE,START,DESCRIBE,GET_HISTORY")
     private String operation = "START";

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <commits@camel.apache.org>.

Reply via email to