Repository: camel Updated Branches: refs/heads/master 0e62b9f97 -> 325d2ebe0
CAMEL-10403: Camel-Nats: Add TLS Support - Fixes Docs Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/325d2ebe Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/325d2ebe Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/325d2ebe Branch: refs/heads/master Commit: 325d2ebe0f49df7912b77ca26c2f07000df57c08 Parents: 0e62b9f Author: Andrea Cosentino <anco...@gmail.com> Authored: Thu Oct 20 14:25:22 2016 +0200 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Thu Oct 20 14:26:10 2016 +0200 ---------------------------------------------------------------------- components/camel-nats/src/main/docs/nats-component.adoc | 2 +- .../java/org/apache/camel/component/nats/NatsConfiguration.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/325d2ebe/components/camel-nats/src/main/docs/nats-component.adoc ---------------------------------------------------------------------- diff --git a/components/camel-nats/src/main/docs/nats-component.adoc b/components/camel-nats/src/main/docs/nats-component.adoc index daad731..2c0839c 100644 --- a/components/camel-nats/src/main/docs/nats-component.adoc +++ b/components/camel-nats/src/main/docs/nats-component.adoc @@ -68,7 +68,7 @@ The Nats component supports 21 endpoint options which are listed below: | exchangePattern | consumer (advanced) | | ExchangePattern | Sets the exchange pattern when the consumer creates an exchange. | replySubject | producer | | String | the subject to which subscribers should send response | synchronous | advanced | false | boolean | Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported). -| secure | security | false | boolean | set set secure option indicating TLS is required +| secure | security | false | boolean | Set secure option indicating TLS is required | sslContextParameters | security | | SSLContextParameters | To configure security using SSLContextParameters | tlsDebug | security | false | boolean | TLS Debug it will add additional console output |======================================================================= http://git-wip-us.apache.org/repos/asf/camel/blob/325d2ebe/components/camel-nats/src/main/java/org/apache/camel/component/nats/NatsConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-nats/src/main/java/org/apache/camel/component/nats/NatsConfiguration.java b/components/camel-nats/src/main/java/org/apache/camel/component/nats/NatsConfiguration.java index 0b1d487..641b24b 100644 --- a/components/camel-nats/src/main/java/org/apache/camel/component/nats/NatsConfiguration.java +++ b/components/camel-nats/src/main/java/org/apache/camel/component/nats/NatsConfiguration.java @@ -220,7 +220,7 @@ public class NatsConfiguration { } /** - * set set secure option indicating TLS is required + * Set secure option indicating TLS is required */ public boolean isSecure() { return secure;