Package org.jboss.jca.core.connectionmanager.tx

Examples of org.jboss.jca.core.connectionmanager.tx.TxConnectionManager


         case LocalTransaction:
            if (tm == null)
               throw new IllegalStateException("TransactionManager is null");

            cm = new TxConnectionManager(tm, true);
            break;

         case XATransaction:
            if (tm == null)
               throw new IllegalStateException("TransactionManager is null");

            cm = new TxConnectionManager(tm, false);
            break;

         default:
            throw new IllegalArgumentException("Unknown transaction support level " + tsl);
      }
View Full Code Here

TOP

Related Classes of org.jboss.jca.core.connectionmanager.tx.TxConnectionManager

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.