Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/XATopicConnectionFactory.java')
-rw-r--r--plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/XATopicConnectionFactory.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/XATopicConnectionFactory.java b/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/XATopicConnectionFactory.java
index 3259498fb0..ba6d5c1c3e 100644
--- a/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/XATopicConnectionFactory.java
+++ b/plugins/org.eclipse.net4j.examples.installer/examples/org.eclipse.net4j.jms.api/src/javax/jms/XATopicConnectionFactory.java
@@ -46,33 +46,33 @@ public interface XATopicConnectionFactory extends XAConnectionFactory, TopicConn
{
/** Creates an XA topic 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 topic connection
*
- * @exception JMSException if the JMS provider fails to create an XA topic
+ * @exception JMSException if the JMS provider fails to create an XA topic
* 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.
*/
XATopicConnection createXATopicConnection() throws JMSException;
/** Creates an XA topic 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 topic connection
*
- * @exception JMSException if the JMS provider fails to create an XA topic
+ * @exception JMSException if the JMS provider fails to create an XA topic
* 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