Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAConnectionFactory.java')
-rw-r--r--plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAConnectionFactory.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAConnectionFactory.java b/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAConnectionFactory.java
index ec332ef6af..448c74c67a 100644
--- a/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAConnectionFactory.java
+++ b/plugins/org.eclipse.net4j.jms.api/src/javax/jms/XAConnectionFactory.java
@@ -59,38 +59,38 @@ public interface XAConnectionFactory
{
/** Creates an <CODE>XAConnection</CODE> 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 <CODE>XAConnection</CODE>
*
- * @exception JMSException if the JMS provider fails to create an XA
+ * @exception JMSException if the JMS provider fails to create an XA
* 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.
- *
- * @since 1.1
+ *
+ * @since 1.1
*/
XAConnection createXAConnection() throws JMSException;
/** Creates an XA 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 connection
*
- * @exception JMSException if the JMS provider fails to create an XA
+ * @exception JMSException if the JMS provider fails to create an XA
* 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.
*
- * @since 1.1
+ * @since 1.1
*/
XAConnection createXAConnection(String userName, String password) throws JMSException;

Back to the top