Package org.apache.activemq

Examples of org.apache.activemq.ActiveMQXAConnectionFactory.copy()


public class ActiveMQXAConnectionFactoryTest extends CombinationTestSupport {
   
    public void testCopy() throws URISyntaxException, JMSException {
        ActiveMQXAConnectionFactory cf = new ActiveMQXAConnectionFactory("vm://localhost?");
        ActiveMQConnectionFactory copy = cf.copy();
        assertTrue("Should be an ActiveMQXAConnectionFactory", copy instanceof ActiveMQXAConnectionFactory);
    }
   
       
    public void testUseURIToSetOptionsOnConnectionFactory() throws URISyntaxException, JMSException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.