Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAQueueConnectionFactory.java')
-rw-r--r--plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAQueueConnectionFactory.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAQueueConnectionFactory.java b/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAQueueConnectionFactory.java
index d7fe335724..4bdbadc59c 100644
--- a/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAQueueConnectionFactory.java
+++ b/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAQueueConnectionFactory.java
@@ -46,33 +46,33 @@ public interface XAQueueConnectionFactory extends XAConnectionFactory, QueueConn
{
/** Creates an XA queue connection with the default user identity.
- * The connection is created in stopped mode. No messages
+ * The connection is created in stopped mode. No messages
* will be delivered until the <code>Connection.start</code> method
* is explicitly called.
*
* @return a newly created XA queue connection
*
- * @exception JMSException if the JMS provider fails to create an XA queue
+ * @exception JMSException if the JMS provider fails to create an XA queue
* connection due to some internal error.
- * @exception JMSSecurityException if client authentication fails due to
+ * @exception JMSSecurityException if client authentication fails due to
* an invalid user name or password.
*/
XAQueueConnection createXAQueueConnection() throws JMSException;
/** Creates an XA queue connection with the specified user identity.
- * The connection is created in stopped mode. No messages
+ * The connection is created in stopped mode. No messages
* will be delivered until the <code>Connection.start</code> method
* is explicitly called.
- *
+ *
* @param userName the caller's user name
* @param password the caller's password
- *
+ *
* @return a newly created XA queue connection
*
- * @exception JMSException if the JMS provider fails to create an XA queue
+ * @exception JMSException if the JMS provider fails to create an XA queue
* connection due to some internal error.
- * @exception JMSSecurityException if client authentication fails due to
+ * @exception JMSSecurityException if client authentication fails due to
* an invalid user name or password.
*/

Back to the top