
javax.jms.XATopicConnectionFactory Maven / Gradle / Ivy
Show all versions of ow2-jms-2.0-spec Show documentation
/**
* Copyright 2013 ScalAgent Distributed Technologies
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ---------------------------------------------------------------------
* $Id: XATopicConnectionFactory.java 6347 2013-03-13 08:52:02Z tachker $
* ---------------------------------------------------------------------
*/
package javax.jms;
/**
* An {@code XATopicConnectionFactory} provides the same create options as a
* {@code TopicConnectionFactory} (optional).
*
*
* The {@code XATopicConnectionFactory} interface is optional. JMS providers are
* not required to support this interface. This interface is for use by JMS
* providers to handle transactional environments. Client programs are strongly
* encouraged to use the transactional support available in their environment,
* rather than use these XA interfaces directly.
*
* @see javax.jms.TopicConnectionFactory
* @see javax.jms.XAConnectionFactory
*
* @version JMS 2.0
* @since JMS 1.0
*
*/
public interface XATopicConnectionFactory extends XAConnectionFactory,
TopicConnectionFactory {
/**
* Creates an XA topic connection with the default user identity.
*
* @return a newly created XA topic connection
*
* @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 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 will be delivered until
* the {@code Connection.start} 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 connection due
* to some internal error.
* @exception JMSSecurityException
* if client authentication fails due to an invalid user name or
* password.
*/
XATopicConnection createXATopicConnection(String userName, String password)
throws JMSException;
}