Package org.teiid.test.framework.transaction

Examples of org.teiid.test.framework.transaction.LocalTransaction



    @Override
    protected TransactionContainer getTransactionContainter() {
  // TODO Auto-generated method stub
  return new LocalTransaction();
    }
View Full Code Here


       
      
        TestLogger.logDebug("====  Create Transaction-Option: " + type);
       
        if (type.equalsIgnoreCase(TRANSACTION_TYPES.LOCAL_TRANSACTION)) {
          transacton = new LocalTransaction();
        }
        else if (type.equalsIgnoreCase(TRANSACTION_TYPES.XATRANSACTION)) {
          transacton = new XATransaction();
        }
        else if (type.equalsIgnoreCase(TRANSACTION_TYPES.JNDI_TRANSACTION)) {
View Full Code Here

TOP

Related Classes of org.teiid.test.framework.transaction.LocalTransaction

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.