Repository: camel Updated Branches: refs/heads/master 805b3c5ef -> 97502f399
fusedoc-1977 JMS component disableReplyTo option description update (second try) Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/fb3fec7e Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/fb3fec7e Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/fb3fec7e Branch: refs/heads/master Commit: fb3fec7eb87a7a9a8cdefdf0c69b870e21d82272 Parents: 62eb217 Author: Melissa Flinn <[email protected]> Authored: Fri Oct 13 11:55:54 2017 -0400 Committer: Claus Ibsen <[email protected]> Committed: Sat Oct 14 19:21:51 2017 +0200 ---------------------------------------------------------------------- .../camel/component/jms/JmsConfiguration.java | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/fb3fec7e/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 32ee9e1..27ac6b8 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 @@ -273,10 +273,11 @@ public class JmsConfiguration implements Cloneable { + " values from the endpoint instead. So, when using this option, the headers override the values from the endpoint." + " The explicitQosEnabled option, by contrast, will only use options set on the endpoint, and not values from the message header.") private boolean preserveMessageQos; - @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 its response directly back to the original JMSReplyTo.") + @UriParam(description = "Specifies whether Camel ignores the JMSReplyTo header in messages. If true, Camel does not send a reply back to" + + " the destination specified in the JMSReplyTo header. You can use this option if you want Camel to consume from a" + + " route and you do not want Camel to automatically send back a reply message because another component in your code" + + " handles the reply message. You can also use this option if you want to use Camel as a proxy between different" + + " message brokers and you want to route message from one system to another.") private boolean disableReplyTo; @UriParam(label = "consumer,advanced", description = "Enables eager loading of JMS properties as soon as a message is loaded" @@ -1394,10 +1395,11 @@ 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 its response directly back to the original JMSReplyTo. + * Specifies whether Camel ignores the JMSReplyTo header in messages. If true, Camel does not send a reply back to + * the destination specified in the JMSReplyTo header. You can use this option if you want Camel to consume from a + * route and you do not want Camel to automatically send back a reply message because another component in your code + * handles the reply message. You can also use this option if you want to use Camel as a proxy between different + * message brokers and you want to route message from one system to another. */ public void setDisableReplyTo(boolean disableReplyTo) { this.disableReplyTo = disableReplyTo;
