Class QueueTcpConnectionFactory
- java.lang.Object
-
- org.objectweb.joram.client.jms.admin.AdministeredObject
-
- org.objectweb.joram.client.jms.admin.AbstractConnectionFactory
-
- org.objectweb.joram.client.jms.QueueConnectionFactory
-
- org.objectweb.joram.client.jms.tcp.QueueTcpConnectionFactory
-
- All Implemented Interfaces:
Serializable,ConnectionFactory,QueueConnectionFactory,Referenceable
public class QueueTcpConnectionFactory extends QueueConnectionFactory
Deprecated.Replaced next to Joram 5.2.1 by TcpConnectionFactory.AQueueTcpConnectionFactoryinstance is a factory of TCP connections for PTP communication.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDDeprecated.define serialVersionUID for interoperability-
Fields inherited from class org.objectweb.joram.client.jms.admin.AbstractConnectionFactory
identity, identityClassName, params, reliableClass
-
Fields inherited from class org.objectweb.joram.client.jms.admin.AdministeredObject
rand
-
-
Constructor Summary
Constructors Modifier Constructor Description QueueTcpConnectionFactory()Deprecated.Constructs an emptyQueueTcpConnectionFactoryinstance.privateQueueTcpConnectionFactory(String host, int port)Deprecated.Constructs aQueueTcpConnectionFactoryinstance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static QueueConnectionFactorycreate()Deprecated.Admin method creating ajavax.jms.QueueConnectionFactoryinstance for creating TCP connections with the default server.static QueueConnectionFactorycreate(String host, int port)Deprecated.Admin method creating ajavax.jms.QueueConnectionFactoryinstance for creating TCP connections with a given server.static QueueConnectionFactorycreate(String host, int port, String reliableClass)Deprecated.Admin method creating ajavax.jms.QueueConnectionFactoryinstance for creating TCP connections with a given server.protected RequestChannelcreateRequestChannel(FactoryParameters params, org.objectweb.joram.shared.security.Identity identity, String reliableClass)Deprecated.Creates theTcpRequestChannelobject specific to the protocol used.-
Methods inherited from class org.objectweb.joram.client.jms.QueueConnectionFactory
toString
-
Methods inherited from class org.objectweb.joram.client.jms.admin.AbstractConnectionFactory
createConnection, createConnection, createContext, createContext, createContext, createContext, createQueueConnection, createQueueConnection, createTopicConnection, createTopicConnection, createXAConnection, createXAConnection, createXAContext, createXAContext, createXAQueueConnection, createXAQueueConnection, createXATopicConnection, createXATopicConnection, fromReference, fromReference, getDefaultLogin, getDefaultPassword, getDefaultRootLogin, getDefaultRootPassword, getDefaultServerHost, getDefaultServerPort, getParameters, initIdentity, setCnxJMXBeanBaseName, setIdentityClassName, setReliableClass, toReference, toReference
-
Methods inherited from class org.objectweb.joram.client.jms.admin.AdministeredObject
getReference
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.jms.ConnectionFactory
createConnection, createConnection, createContext, createContext, createContext, createContext
-
Methods inherited from interface javax.jms.QueueConnectionFactory
createQueueConnection, createQueueConnection
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Deprecated.define serialVersionUID for interoperability- See Also:
- Constant Field Values
-
-
Constructor Detail
-
QueueTcpConnectionFactory
public QueueTcpConnectionFactory()
Deprecated.Constructs an emptyQueueTcpConnectionFactoryinstance. Should only be used for internal purposes.
-
QueueTcpConnectionFactory
private QueueTcpConnectionFactory(String host, int port)
Deprecated.Constructs aQueueTcpConnectionFactoryinstance.- Parameters:
host- Name or IP address of the server's host.port- Server's listening port.
-
-
Method Detail
-
createRequestChannel
protected RequestChannel createRequestChannel(FactoryParameters params, org.objectweb.joram.shared.security.Identity identity, String reliableClass) throws JMSException
Deprecated.Creates theTcpRequestChannelobject specific to the protocol used.- Specified by:
createRequestChannelin classAbstractConnectionFactory- Parameters:
params- Connection configuration parameters.identity- Client's identity.reliableClass- The protocol specific class.- Returns:
- The
RequestChannelobject specific to the protocol used. - Throws:
JMSException- A problem occurs during the connection.- See Also:
AbstractConnectionFactory.createRequestChannel(FactoryParameters, Identity, String)
-
create
public static QueueConnectionFactory create()
Deprecated.Admin method creating ajavax.jms.QueueConnectionFactoryinstance for creating TCP connections with the default server.- Throws:
ConnectException- If the admin connection is closed or broken.- See Also:
AbstractConnectionFactory.getDefaultServerHost(),AbstractConnectionFactory.getDefaultServerPort()
-
create
public static QueueConnectionFactory create(String host, int port)
Deprecated.Admin method creating ajavax.jms.QueueConnectionFactoryinstance for creating TCP connections with a given server.- Parameters:
host- Name or IP address of the server's host.port- Server's listening port.
-
create
public static QueueConnectionFactory create(String host, int port, String reliableClass)
Deprecated.Admin method creating ajavax.jms.QueueConnectionFactoryinstance for creating TCP connections with a given server.- Parameters:
host- Name or IP address of the server's host.port- Server's listening port.reliableClass- Reliable class name.
-
-