Package org.jpos.transaction.TransactionStatusEvent

Examples of org.jpos.transaction.TransactionStatusEvent.State


    TransactionStatusEvent transactionStatusEvent;

    @Before
    public void setUp() throws Exception {
        int session = 1;
        State state = State.ABORTING;
        long id = 2L;
        String info = "inforString";
        Serializable context = "someContextObject";
        transactionStatusEvent = new TransactionStatusEvent(session, state, id, info, context);
    }
View Full Code Here

TOP

Related Classes of org.jpos.transaction.TransactionStatusEvent.State

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.