Package org.jboss.as.txn.ee.concurrency

Examples of org.jboss.as.txn.ee.concurrency.TransactionSetupProviderService


                        new ManagedReferenceInjector<UserTransaction>(userTransactionBindingService.getManagedObjectInjector()));
        utBuilder.addListener(verificationHandler);
        controllers.add(utBuilder.install());

        // install the EE Concurrency transaction setup provider's service
        final TransactionSetupProviderService transactionSetupProviderService = new TransactionSetupProviderService();
        final ServiceBuilder<TransactionSetupProvider> transactionSetupServiceBuilder = context.getServiceTarget().addService(ConcurrentServiceNames.TRANSACTION_SETUP_PROVIDER_SERVICE_NAME, transactionSetupProviderService)
                .addDependency(TransactionManagerService.SERVICE_NAME, TransactionManager.class, transactionSetupProviderService.getTransactionManagerInjectedValue())
                .addListener(verificationHandler);
        controllers.add(transactionSetupServiceBuilder.install());


    }
View Full Code Here

TOP

Related Classes of org.jboss.as.txn.ee.concurrency.TransactionSetupProviderService

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.