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 2017/04/12 08:55:55 UTC

[09/18] camel git commit: Mark secrets as secret

Mark secrets as secret


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/80211658
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/80211658
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/80211658

Branch: refs/heads/master
Commit: 8021165843617ac27357aed55e4d4d8609304e5b
Parents: 47a9019
Author: Jens Reimann <jr...@redhat.com>
Authored: Tue Apr 11 19:33:28 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Wed Apr 12 10:55:26 2017 +0200

----------------------------------------------------------------------
 .../camel/component/milo/client/MiloClientConfiguration.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/80211658/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java
----------------------------------------------------------------------
diff --git a/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java b/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java
index e1e7301..037a109 100644
--- a/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java
+++ b/components/camel-milo/src/main/java/org/apache/camel/component/milo/client/MiloClientConfiguration.java
@@ -76,10 +76,10 @@ public class MiloClientConfiguration implements Cloneable {
 	@UriParam(label = "client")
 	private String keyAlias;
 
-	@UriParam(label = "client")
+	@UriParam(label = "client", secret = true)
 	private String keyStorePassword;
 
-	@UriParam(label = "client")
+	@UriParam(label = "client", secret = true)
 	private String keyPassword;
 
 	public MiloClientConfiguration() {