net.sf.dropboxmq.connectionfactories
Class TopicConnectionFactoryImpl

java.lang.Object
  extended by net.sf.dropboxmq.connectionfactories.ConnectionFactoryImpl
      extended by net.sf.dropboxmq.connectionfactories.TopicConnectionFactoryImpl
All Implemented Interfaces:
Serializable, ConnectionFactory, TopicConnectionFactory, Referenceable

public class TopicConnectionFactoryImpl
extends ConnectionFactoryImpl
implements TopicConnectionFactory

Created: 10 Mar 2006

Version:
$Revision: 211 $, $Date: 2010-11-14 14:21:24 -0700 (Sun, 14 Nov 2010) $
Author:
Dwayne Schultz
See Also:
Serialized Form

Constructor Summary
TopicConnectionFactoryImpl(Configuration configuration, ManagedConnectionFactory managedConnectionFactory, ConnectionManager connectionManager)
           
 
Method Summary
 TopicConnection createTopicConnection()
          Creates a topic connection with the default user identity.
 TopicConnection createTopicConnection(String userName, String password)
          Creates a topic connection with the specified user identity.
 
Methods inherited from class net.sf.dropboxmq.connectionfactories.ConnectionFactoryImpl
createConnection, createConnection, createConnection, getConfiguration, getConnectionManager, getManagedConnectionFactory, getReference, setReference, toObjectString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.jms.ConnectionFactory
createConnection, createConnection
 

Constructor Detail

TopicConnectionFactoryImpl

public TopicConnectionFactoryImpl(Configuration configuration,
                                  ManagedConnectionFactory managedConnectionFactory,
                                  ConnectionManager connectionManager)
Method Detail

createTopicConnection

public TopicConnection createTopicConnection()
                                      throws JMSException
Description copied from interface: javax.jms.TopicConnectionFactory
Creates a topic connection with the default user identity. The connection is created in stopped mode. No messages will be delivered until the Connection.start method is explicitly called.

Specified by:
createTopicConnection in interface TopicConnectionFactory
Returns:
a newly created topic connection
Throws:
JMSException - if the JMS provider fails to create a topic connection due to some internal error.

createTopicConnection

public TopicConnection createTopicConnection(String userName,
                                             String password)
                                      throws JMSException
Description copied from interface: javax.jms.TopicConnectionFactory
Creates a topic connection with the specified user identity. The connection is created in stopped mode. No messages will be delivered until the Connection.start method is explicitly called.

Specified by:
createTopicConnection in interface TopicConnectionFactory
Parameters:
userName - the caller's user name
password - the caller's password
Returns:
a newly created topic connection
Throws:
JMSException - if the JMS provider fails to create a topic connection due to some internal error.