This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 477749a Fixed CS 477749a is described below commit 477749a18ce5de9cce4b1fc87297e7840c5dd5f2 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Aug 10 18:51:40 2020 +0200 Fixed CS --- .../org/apache/camel/component/http/HttpComponent.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java index bee6a70..3e89873 100644 --- a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java +++ b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java @@ -118,21 +118,21 @@ public class HttpComponent extends HttpCommonComponent implements RestProducerFa protected int socketTimeout = -1; // proxy - private String proxyAuthScheme; + protected String proxyAuthScheme; @Metadata(label = "producer,proxy", enums = "Basic,Digest,NTLM", description = "Proxy authentication method to use") - private String proxyAuthMethod; + protected String proxyAuthMethod; @Metadata(label = "producer,proxy", secret = true, description = "Proxy authentication username") - private String proxyAuthUsername; + protected String proxyAuthUsername; @Metadata(label = "producer,proxy", secret = true, description = "Proxy authentication password") - private String proxyAuthPassword; + protected String proxyAuthPassword; @Metadata(label = "producer,proxy", description = "Proxy authentication host") - private String proxyAuthHost; + protected String proxyAuthHost; @Metadata(label = "producer,proxy", description = "Proxy authentication port") - private Integer proxyAuthPort; + protected Integer proxyAuthPort; @Metadata(label = "producer,proxy", description = "Proxy authentication domain to use") - private String proxyAuthDomain; + protected String proxyAuthDomain; @Metadata(label = "producer,proxy", description = "Proxy authentication domain (workstation name) to use with NTML") - private String proxyAuthNtHost; + protected String proxyAuthNtHost; // options to the default created http connection manager @Metadata(label = "advanced", defaultValue = "200", description = "The maximum number of connections.")