fusedoc-1977 JMS component disableReplyTo option description update

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/62eb2172
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/62eb2172
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/62eb2172

Branch: refs/heads/master
Commit: 62eb217282b6d9667e1822c91a1a2c4fbae6f321
Parents: 805b3c5
Author: Melissa Flinn <[email protected]>
Authored: Fri Oct 13 10:59:15 2017 -0400
Committer: Claus Ibsen <[email protected]>
Committed: Sat Oct 14 19:21:51 2017 +0200

----------------------------------------------------------------------
 components/camel-jms/src/main/docs/jms-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/62eb2172/components/camel-jms/src/main/docs/jms-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-jms/src/main/docs/jms-component.adoc 
b/components/camel-jms/src/main/docs/jms-component.adoc
index 1ddd29d..8ef8a3c 100644
--- a/components/camel-jms/src/main/docs/jms-component.adoc
+++ b/components/camel-jms/src/main/docs/jms-component.adoc
@@ -329,7 +329,7 @@ with the following path and query parameters:
 | Name | Description | Default | Type
 | *clientId* (common) | Sets the JMS client ID to use. Note that this value if 
specified must be unique and can only be used by a single JMS connection 
instance. It is typically only required for durable topic subscriptions. If 
using Apache ActiveMQ you may prefer to use Virtual Topics instead. |  | String
 | *connectionFactory* (common) | Sets the default connection factory to be 
used if a connection factory is not specified for either link 
setTemplateConnectionFactory(ConnectionFactory) or link 
setListenerConnectionFactory(ConnectionFactory) |  | ConnectionFactory
-| *disableReplyTo* (common) | 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. | 
false | boolean
+| *disableReplyTo* (common) | 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. | false | boolean
 | *durableSubscriptionName* (common) | The durable subscriber name for 
specifying durable topic subscriptions. The clientId option must be configured 
as well. |  | String
 | *jmsMessageType* (common) | Allows you to force the use of a specific 
javax.jms.Message implementation for sending JMS messages. Possible values are: 
Bytes Map Object Stream Text. By default Camel would determine which JMS 
message type to use from the In body type. This option allows you to specify 
it. |  | JmsMessageType
 | *testConnectionOnStartup* (common) | Specifies whether to test the 
connection on startup. This ensures that when Camel starts that all the JMS 
consumers have a valid connection to the JMS broker. If a connection cannot be 
granted then Camel throws an exception on startup. This ensures that Camel is 
not started with failed connections. The JMS producers is tested as well. | 
false | boolean

Reply via email to