Package bitronix.tm.mock.resource.jms

Examples of bitronix.tm.mock.resource.jms.MockXAConnectionFactory


        PoolingConnectionFactory pcf = new PoolingConnectionFactory();
        try {
            pcf.setUniqueName("pcf");
            pcf.setMinPoolSize(1);
            pcf.setMaxPoolSize(1);
            pcf.setXaConnectionFactory(new MockXAConnectionFactory());

            pcf.init();

            Connection connection = pcf.createConnection();
            connection.close();
View Full Code Here

TOP

Related Classes of bitronix.tm.mock.resource.jms.MockXAConnectionFactory

Copyright © 2018 www.massapicom. 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.