polishing

This commit is contained in:
Stephane Nicoll
2014-07-24 17:12:31 +02:00
parent 105a6023b3
commit 0a46f38527
3 changed files with 21 additions and 6 deletions

View File

@@ -27,8 +27,8 @@ import org.springframework.messaging.core.MessageReceivingOperations;
import org.springframework.messaging.core.MessageSendingOperations;
/**
* A specialization of {@link MessageSendingOperations} and {@link MessageSendingOperations}
* for JMS related operations that allows to specify a destination name rather than the
* A specialization of {@link MessageSendingOperations} and {@link MessageReceivingOperations}
* for JMS related operations that allow to specify a destination name rather than the
* actual {@link javax.jms.Destination}
*
* @author Stephane Nicoll

View File

@@ -53,7 +53,6 @@ public abstract class JmsGatewaySupport implements InitializingBean {
* Will automatically create a JmsTemplate for the given ConnectionFactory.
* @see #createJmsTemplate
* @see #setConnectionFactory(javax.jms.ConnectionFactory)
* @param connectionFactory
*/
public final void setConnectionFactory(ConnectionFactory connectionFactory) {
this.jmsTemplate = createJmsTemplate(connectionFactory);
@@ -81,7 +80,6 @@ public abstract class JmsGatewaySupport implements InitializingBean {
/**
* Set the JmsTemplate for the gateway.
* @param jmsTemplate
* @see #setConnectionFactory(javax.jms.ConnectionFactory)
*/
public final void setJmsTemplate(JmsTemplate jmsTemplate) {