CAMEL-10650: fix documentation on http4 component
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/9142fcb4 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/9142fcb4 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/9142fcb4 Branch: refs/heads/apache-master Commit: 9142fcb4cff088cf8a530c5cd135b0e16efb639a Parents: 3ce78e0 Author: Nicola Ferraro <ni.ferr...@gmail.com> Authored: Tue Apr 11 18:16:23 2017 +0200 Committer: Nicola Ferraro <ni.ferr...@gmail.com> Committed: Tue Apr 11 18:16:23 2017 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/camel/component/http4/HttpComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/9142fcb4/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpComponent.java ---------------------------------------------------------------------- diff --git a/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpComponent.java b/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpComponent.java index b465374..7bff7e2 100644 --- a/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpComponent.java +++ b/components/camel-http4/src/main/java/org/apache/camel/component/http4/HttpComponent.java @@ -85,7 +85,7 @@ public class HttpComponent extends HttpCommonComponent implements RestProducerFa + " 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; - @Metadata(label = "security", defaultValue = "false") + @Metadata(description = "Enable usage of global SSL context parameters", label = "security", defaultValue = "false") private boolean useGlobalSslContextParameters; @Metadata(label = "security", description = "To use a custom X509HostnameVerifier such as DefaultHostnameVerifier or NoopHostnameVerifier.") protected HostnameVerifier x509HostnameVerifier = new DefaultHostnameVerifier();