Package org.jencks

Examples of org.jencks.GeronimoPlatformTransactionManager


        broker.setUseJmx(false);
        broker.setPersistent(false);
        broker.addConnector("tcp://localhost:61616");
        broker.start();
       
        tm = new GeronimoPlatformTransactionManager();
       
        // Create an embedded database for testing tx results when commit / rollback
        ConnectionManagerFactoryBean factory = new ConnectionManagerFactoryBean();
        factory.setTransactionManager(tm);
        factory.setTransaction("xa");
View Full Code Here


public class StatelessJcaFlowTest extends StatelessJmsFlowTest {

    private TransactionManager tm;
   
    protected void setUp() throws Exception {
      tm = new GeronimoPlatformTransactionManager();
        super.setUp();
    }
View Full Code Here

TOP

Related Classes of org.jencks.GeronimoPlatformTransactionManager

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.