| java.lang.Object com.caucho.jms.connection.ConnectionFactoryImpl com.caucho.jms.connection.XAConnectionFactoryImpl
Method Summary | |
public Connection | createConnection() | public Connection | createConnection(String username, String password) Creates a new connection
Parameters: username - the username to authenticate with the server. Parameters: password - the password to authenticate with the server. | public Queue | createQueue(String name) Creates queue. | public QueueConnection | createQueueConnection() | public QueueConnection | createQueueConnection(String username, String password) Creates a new queue connection
Parameters: username - the username to authenticate with the server. Parameters: password - the password to authenticate with the server. | public Topic | createTopic(String name) Creates topics. | public TopicConnection | createTopicConnection() | public TopicConnection | createTopicConnection(String username, String password) Creates a new queue connection
Parameters: username - the username to authenticate with the server. Parameters: password - the password to authenticate with the server. |
XAConnectionFactoryImpl | public XAConnectionFactoryImpl()(Code) | | |
createConnection | public Connection createConnection() throws JMSException(Code) | | Creates a new queue connection
|
createConnection | public Connection createConnection(String username, String password) throws JMSException(Code) | | Creates a new connection
Parameters: username - the username to authenticate with the server. Parameters: password - the password to authenticate with the server. the created connection |
createQueue | public Queue createQueue(String name) throws JMSException(Code) | | Creates queue.
|
createQueueConnection | public QueueConnection createQueueConnection() throws JMSException(Code) | | Creates a new queue connection
|
createQueueConnection | public QueueConnection createQueueConnection(String username, String password) throws JMSException(Code) | | Creates a new queue connection
Parameters: username - the username to authenticate with the server. Parameters: password - the password to authenticate with the server. the created connection |
createTopic | public Topic createTopic(String name) throws JMSException(Code) | | Creates topics.
|
createTopicConnection | public TopicConnection createTopicConnection() throws JMSException(Code) | | Creates a new queue connection
|
createTopicConnection | public TopicConnection createTopicConnection(String username, String password) throws JMSException(Code) | | Creates a new queue connection
Parameters: username - the username to authenticate with the server. Parameters: password - the password to authenticate with the server. the created connection |
|
|