Package org.apache.geronimo.transaction

Examples of org.apache.geronimo.transaction.XAServices


    /**
     * Tests get and set work manager
     */
    public void testGetSetWorkManager() {
        XAServices xaServices = new MockXATerminator("MockXATerminator");
        GeronimoWorkManager manager = new GeronimoWorkManager(1, xaServices);
        BootstrapContextImpl context = new BootstrapContextImpl(manager);
        WorkManager wm = context.getWorkManager();

        assertSame("Make sure it is the same object", manager, wm);
View Full Code Here


    /**
     * Tests get and set XATerminator
     */
    public void testGetSetXATerminator() {
        XAServices xaServices = new MockXATerminator("MockXATerminator");
        GeronimoWorkManager manager = new GeronimoWorkManager(1, xaServices);
        BootstrapContextImpl context = new BootstrapContextImpl(manager);
        XATerminator xat = context.getXATerminator();

        assertSame("Make sure it is the same object", xaServices, xat);
View Full Code Here

TOP

Related Classes of org.apache.geronimo.transaction.XAServices

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.