Package org.springframework.test.context.transaction

Examples of org.springframework.test.context.transaction.TransactionConfigurationAttributes


        else {
            transactionManagerName = (String) AnnotationUtils.getDefaultValue(annotationType, "transactionManager");
            defaultRollback = (Boolean) AnnotationUtils.getDefaultValue(annotationType, "defaultRollback");
        }

        TransactionConfigurationAttributes configAttributes =
                new TransactionConfigurationAttributes(transactionManagerName, defaultRollback);
        if (logger.isDebugEnabled()) {
            logger.debug("Retrieved TransactionConfigurationAttributes [" + configAttributes + "] for class [" + clazz + "]");
        }
        return configAttributes;
    }
View Full Code Here

TOP

Related Classes of org.springframework.test.context.transaction.TransactionConfigurationAttributes

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.