CAMEL-10457: Cannot generate javadoc for camel-jms
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/19a6680c Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/19a6680c Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/19a6680c Branch: refs/heads/camel-2.18.x Commit: 19a6680cc7b1e0e484eace2ec6eef1db8245cbd6 Parents: 486ed7d Author: Claus Ibsen <[email protected]> Authored: Tue Nov 8 19:50:44 2016 +0100 Committer: Claus Ibsen <[email protected]> Committed: Tue Nov 8 19:53:28 2016 +0100 ---------------------------------------------------------------------- .../component/jms/springboot/JmsComponentConfiguration.java | 2 +- .../java/org/apache/camel/component/jms/JmsConfiguration.java | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/19a6680c/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java ---------------------------------------------------------------------- diff --git a/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java b/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java index 067b5e6..bc77edf 100644 --- a/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java +++ b/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java @@ -1476,7 +1476,7 @@ public class JmsComponentConfiguration { * like in the case of InOnly. Like InOnly the producer will not wait * for a reply. A consumer with this flag will behave like InOnly. This * feature can be used to bridge InOut requests to another queue so that - * a route on the other queue will send it´s response directly back to + * a route on the other queue will send its response directly back to * the original JMSReplyTo. */ private Boolean disableReplyTo; http://git-wip-us.apache.org/repos/asf/camel/blob/19a6680c/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsConfiguration.java b/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsConfiguration.java index 57f2ad3..3a99b5e 100644 --- a/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsConfiguration.java +++ b/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsConfiguration.java @@ -274,7 +274,7 @@ public class JmsConfiguration implements Cloneable { @UriParam(description = "If true, a producer will behave like a InOnly exchange with the exception that JMSReplyTo header is sent out and" + " not be suppressed like in the case of InOnly. Like InOnly the producer will not wait for a reply." + " A consumer with this flag will behave like InOnly. This feature can be used to bridge InOut requests to" - + " another queue so that a route on the other queue will send it´s response directly back to the original JMSReplyTo.") + + " another queue so that a route on the other queue will send its response directly back to the original JMSReplyTo.") private boolean disableReplyTo; @UriParam(label = "consumer,advanced", description = "Enables eager loading of JMS properties as soon as a message is loaded" @@ -340,7 +340,8 @@ public class JmsConfiguration implements Cloneable { private boolean transferException; @UriParam(label = "advanced", description = "If enabled and you are using Request Reply messaging (InOut) and an Exchange failed with a SOAP fault (not exception) on the consumer side," - + " then the fault flag on Message#isFault() will be send back in the response as a JMS header with the key JmsConstants#JMS_TRANSFER_FAULT." + + " then the fault flag on Message#isFault() will be send back in the response as a JMS header with the key" + + " org.apache.camel.component.jms.JmsConstants#JMS_TRANSFER_FAULT#JMS_TRANSFER_FAULT." + " If the client is Camel, the returned fault flag will be set on the {@link org.apache.camel.Message#setFault(boolean)}." + " You may want to enable this when using Camel components that support faults such as SOAP based such as cxf or spring-ws.") private boolean transferFault; @@ -1360,7 +1361,7 @@ public class JmsConfiguration implements Cloneable { * If true, a producer will behave like a InOnly exchange with the exception that JMSReplyTo header is sent out and * not be suppressed like in the case of InOnly. Like InOnly the producer will not wait for a reply. * A consumer with this flag will behave like InOnly. This feature can be used to bridge InOut requests to - * another queue so that a route on the other queue will send it´s response directly back to the original JMSReplyTo. + * another queue so that a route on the other queue will send its response directly back to the original JMSReplyTo. */ public void setDisableReplyTo(boolean disableReplyTo) { this.disableReplyTo = disableReplyTo;
