Package org.castor.transactionmanager

Examples of org.castor.transactionmanager.TransactionManagerRegistry$Loader


            String name = adapt.getName();
            String txm = adapt.getTransactionManager();
            Properties prop = adapt.getTransactionManagerParameters();
           
            AbstractProperties properties = CPAProperties.getInstance();
            TransactionManagerRegistry txr = new TransactionManagerRegistry(properties);
            try {
                txr.registerTransactionManager(name, txm, prop);
                _txManager = txr.getTransactionManager(name);
            } catch (TransactionManagerAcquireException ex) {
                throw new MappingException(ex);
            }
           
            initializeEngine(_jdoConf.getDatabase(_index).getEngine());
View Full Code Here

TOP

Related Classes of org.castor.transactionmanager.TransactionManagerRegistry$Loader

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.