Package org.glassfish.enterprise.concurrent.spi

Examples of org.glassfish.enterprise.concurrent.spi.TransactionSetupProvider


    public void stop(final StopContext context) {
        transactionSetupProvider = null;
    }

    public TransactionSetupProvider getValue() throws IllegalStateException {
        final TransactionSetupProvider value = this.transactionSetupProvider;
        if (value == null) {
            throw TransactionLogger.ROOT_LOGGER.transactionSetupProviderServiceNotStarted();
        }
        return value;
    }
View Full Code Here

TOP

Related Classes of org.glassfish.enterprise.concurrent.spi.TransactionSetupProvider

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.