From commits-return-68227-archive-asf-public=cust-asf.ponee.io@camel.apache.org Sun Jan 6 14:20:14 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id E4AB4180636 for ; Sun, 6 Jan 2019 14:20:13 +0100 (CET) Received: (qmail 32547 invoked by uid 500); 6 Jan 2019 13:20:13 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 32538 invoked by uid 99); 6 Jan 2019 13:20:13 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 06 Jan 2019 13:20:12 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E6E74821CA; Sun, 6 Jan 2019 13:20:11 +0000 (UTC) Date: Sun, 06 Jan 2019 13:20:11 +0000 To: "commits@camel.apache.org" Subject: [camel] branch camel-2.21.x updated: Fix Checkstyle issues MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154678081144.24116.642671467216917547@gitbox.apache.org> From: gzurowski@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: camel X-Git-Refname: refs/heads/camel-2.21.x X-Git-Reftype: branch X-Git-Oldrev: a5dbd39972be9c08f0c093108067a7711ddee4ea X-Git-Newrev: 0cddb8eb58a9412c1d9e2222b589d092faffead9 X-Git-Rev: 0cddb8eb58a9412c1d9e2222b589d092faffead9 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. gzurowski pushed a commit to branch camel-2.21.x in repository https://gitbox.apache.org/repos/asf/camel.git The following commit(s) were added to refs/heads/camel-2.21.x by this push: new 0cddb8e Fix Checkstyle issues 0cddb8e is described below commit 0cddb8eb58a9412c1d9e2222b589d092faffead9 Author: Gregor Zurowski AuthorDate: Sun Jan 6 14:20:03 2019 +0100 Fix Checkstyle issues Signed-off-by: Gregor Zurowski --- .../main/java/org/apache/camel/component/http4/HttpEndpoint.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpEndpoint.java b/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpEndpoint.java index 1a96867..00acea1 100644 --- a/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpEndpoint.java +++ b/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpEndpoint.java @@ -56,6 +56,10 @@ public class HttpEndpoint extends HttpCommonEndpoint { private static final Logger LOG = LoggerFactory.getLogger(HttpEndpoint.class); + @UriParam(label = "security", description = "To configure security using SSLContextParameters." + + " Important: Only one instance of org.apache.camel.util.jsse.SSLContextParameters is supported per HttpComponent." + + " If you need to use 2 or more different instances, you need to define a new HttpComponent per instance you need.") + protected SSLContextParameters sslContextParameters; @UriParam(label = "advanced", description = "To use a custom HttpContext instance") private HttpContext httpContext; @UriParam(label = "advanced", description = "Register a custom configuration strategy for new HttpClient instances" @@ -109,10 +113,6 @@ public class HttpEndpoint extends HttpCommonEndpoint { private int connectionsPerRoute; @UriParam(label = "security", description = "To use a custom X509HostnameVerifier such as DefaultHostnameVerifier or NoopHostnameVerifier") private HostnameVerifier x509HostnameVerifier; - @UriParam(label = "security", description = "To configure security using SSLContextParameters." - + " Important: Only one instance of org.apache.camel.util.jsse.SSLContextParameters is supported per HttpComponent." - + " If you need to use 2 or more different instances, you need to define a new HttpComponent per instance you need.") - protected SSLContextParameters sslContextParameters; public HttpEndpoint() { }