use of com.sun.messaging.AdministeredObject in project openmq by eclipse-ee4j.
the class JMSObjFactory method createConnectionFactory.
/**
* Create a JMS Connection Factory.
*
* <P>
* No verification of valid param values are needed at this point because the assumption is that valid values were
* checked before this was called.
*
* @param objProps the set of Properties to be set when the JMS Topic Connection Factory is created.
* @return the com.sun.messaging.ConnectionFactory
*/
public static Object createConnectionFactory(Properties objProps) throws JMSException {
AdministeredObject obj = null;
obj = new com.sun.messaging.ConnectionFactory();
setProperties(obj, objProps);
return (obj);
}
use of com.sun.messaging.AdministeredObject in project openmq by eclipse-ee4j.
the class JMSObjFactory method createXAConnectionFactory.
/**
* Create a JMS XA Connection Factory.
*
* <P>
* No verification of valid param values are needed at this point because the assumption is that valid values were
* checked before this was called.
*
* @param objProps the set of Properties to be set when the JMS XA Queue Connection Factory is created.
* @return the com.sun.messaging.XAConnectionFactory
*/
public static Object createXAConnectionFactory(Properties objProps) throws JMSException {
AdministeredObject obj = null;
obj = new com.sun.messaging.XAConnectionFactory();
setProperties(obj, objProps);
return (obj);
}
Aggregations