Fix JMS Doc typo

There is no such class `ReplyQosSettings`.

Closes gh-1836
This commit is contained in:
Gary Russell
2018-05-25 10:25:15 -04:00
committed by Stephane Nicoll
parent 836a09d5c0
commit c4efe79d5a

View File

@@ -2677,7 +2677,7 @@ the time to live, you can configure the `JmsListenerContainerFactory` accordingl
public DefaultJmsListenerContainerFactory jmsListenerContainerFactory() {
DefaultJmsListenerContainerFactory factory = new DefaultJmsListenerContainerFactory();
factory.setConnectionFactory(connectionFactory());
QosSettings replyQosSettings = new ReplyQosSettings();
QosSettings replyQosSettings = new QosSettings();
replyQosSettings.setPriority(2);
replyQosSettings.setTimeToLive(10000);
factory.setReplyQosSettings(replyQosSettings);