spring-tx

org.springframework.transaction.annotation
Class AbstractTransactionManagementConfiguration

java.lang.Object
  extended by org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration
All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.context.annotation.ImportAware
Direct Known Subclasses:
ProxyTransactionManagementConfiguration

@Configuration
public abstract class AbstractTransactionManagementConfiguration
extends java.lang.Object
implements org.springframework.context.annotation.ImportAware

Abstract base @Configuration class providing common structure for enabling Spring's annotation-driven transaction management capability.

Since:
3.1
Author:
Chris Beams
See Also:
EnableTransactionManagement

Field Summary
protected  org.springframework.core.annotation.AnnotationAttributes enableTx
           
protected  PlatformTransactionManager txManager
           
 
Constructor Summary
AbstractTransactionManagementConfiguration()
           
 
Method Summary
 void setImportMetadata(org.springframework.core.type.AnnotationMetadata importMetadata)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

enableTx

protected org.springframework.core.annotation.AnnotationAttributes enableTx

txManager

protected PlatformTransactionManager txManager
Constructor Detail

AbstractTransactionManagementConfiguration

public AbstractTransactionManagementConfiguration()
Method Detail

setImportMetadata

public void setImportMetadata(org.springframework.core.type.AnnotationMetadata importMetadata)
Specified by:
setImportMetadata in interface org.springframework.context.annotation.ImportAware

spring-tx