Package org.jboss.as.controller

Examples of org.jboss.as.controller.ControllerTransactionSynchronization


    protected OperationControllerContext getOperationControllerContext(final Operation operation, final ControllerTransactionContext transaction) {
        boolean forHost = isOperationForHost(operation.getOperation());
        final ConfigurationPersisterProvider persisterProvider = new DualRootConfigurationPersisterProvider(getConfigurationPersisterProvider(), hostPersisterProvider, forHost);
        final TransactionAwareOperationControllerContext occ = new TransactionAwareOperationControllerContext(persisterProvider, transaction);
        if (transaction != null) {
            transaction.registerSynchronization(new ControllerTransactionSynchronization() {

                @Override
                public void beforeCompletion() {
                    // no-op
                }
View Full Code Here

TOP

Related Classes of org.jboss.as.controller.ControllerTransactionSynchronization

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.