Package grails.transaction

Examples of grails.transaction.TransactionManagerAware


     * @throws BeansException
     */
    @Override
    public boolean postProcessAfterInstantiation(Object bean, String name) throws BeansException {
        if (bean instanceof TransactionManagerAware) {
            TransactionManagerAware tma = (TransactionManagerAware) bean;
            tma.setTransactionManager(transactionManager);
        }
        return true;
    }
View Full Code Here

TOP

Related Classes of grails.transaction.TransactionManagerAware

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.