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 2018/01/15 10:18:06 UTC

[camel] 06/07: Camel-AWS SNS: secretKey and accessKey are secret

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 2e6d78a2f878d90991aaf7a62761d1e871fc72a3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jan 15 11:12:51 2018 +0100

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

diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsConfiguration.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsConfiguration.java
index 0dc6446..691fecf 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsConfiguration.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sns/SnsConfiguration.java
@@ -31,9 +31,9 @@ public class SnsConfiguration implements Cloneable {
     private String topicName;
     @UriParam
     private AmazonSNS amazonSNSClient;
-    @UriParam
+    @UriParam(label = "security", secret = true)
     private String accessKey;
-    @UriParam
+    @UriParam(label = "security", secret = true)
     private String secretKey;
     @UriParam
     private String amazonSNSEndpoint;

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