You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2017/06/29 09:04:22 UTC

camel git commit: CAMEL-11478: Revise what Salesforce component p...

Repository: camel
Updated Branches:
  refs/heads/master f95aa376f -> f37654176


CAMEL-11478: Revise what Salesforce component p...

...roperties are marked as secret

Removes `secret` mark from: clientId, userName and httpProxyUsername
component properties.


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

Branch: refs/heads/master
Commit: f37654176d61e2dc6d1e09f8653c241682001a30
Parents: f95aa37
Author: Zoran Regvart <zr...@apache.org>
Authored: Thu Jun 29 11:04:18 2017 +0200
Committer: Zoran Regvart <zr...@apache.org>
Committed: Thu Jun 29 11:04:18 2017 +0200

----------------------------------------------------------------------
 .../camel/component/salesforce/SalesforceComponent.java     | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f3765417/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceComponent.java
----------------------------------------------------------------------
diff --git a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceComponent.java b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceComponent.java
index ab1d90f..2b6f181 100644
--- a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceComponent.java
+++ b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceComponent.java
@@ -80,7 +80,7 @@ public class SalesforceComponent extends DefaultComponent implements VerifiableC
 
     @Metadata(description = "OAuth Consumer Key of the connected app configured in the Salesforce instance setup."
         + " Typically a connected app needs to be configured but one can be provided by installing a package.",
-        label = "common,security", secret = true, required = "true")
+        label = "common,security", required = "true")
     private String clientId;
 
     @Metadata(description = "OAuth Consumer Secret of the connected app configured in the Salesforce instance setup.",
@@ -98,8 +98,7 @@ public class SalesforceComponent extends DefaultComponent implements VerifiableC
 
     @Metadata(description = "Username used in OAuth flow to gain access to access token. It's easy to get started with" 
         + " password OAuth flow, but in general one should avoid it as it is deemed less secure than other flows.",
-        label = "common,security",
-        secret = true)
+        label = "common,security")
     private String userName;
 
     @Metadata(description = "Password used in OAuth flow to gain access to access token. It's easy to get started with"
@@ -117,7 +116,7 @@ public class SalesforceComponent extends DefaultComponent implements VerifiableC
     @Metadata(description = "Explicit authentication method to be used, one of USERNAME_PASSWORD, REFRESH_TOKEN or JWT."
         + " Salesforce component can auto-determine the authentication method to use from the properties set, set this "
         + " property to eliminate any ambiguity.",
-        label = "common,security", secret = false, enums = "USERNAME_PASSWORD,REFRESH_TOKEN,JWT")
+        label = "common,security", enums = "USERNAME_PASSWORD,REFRESH_TOKEN,JWT")
     private AuthenticationType authenticationType;
 
     @Metadata(description = "If set to true prevents the component from authenticating to Salesforce with the start of"
@@ -164,7 +163,7 @@ public class SalesforceComponent extends DefaultComponent implements VerifiableC
 
     // Proxy basic authentication
     @Metadata(description = "Username to use to authenticate against the HTTP proxy server.",
-        label = "common,proxy,security", secret = true)
+        label = "common,proxy,security")
     private String httpProxyUsername;
 
     @Metadata(description = "Password to use to authenticate against the HTTP proxy server.",