Class DelegatingTransactionAttribute
java.lang.Object
org.springframework.transaction.support.DelegatingTransactionDefinition
org.springframework.transaction.interceptor.DelegatingTransactionAttribute
- All Implemented Interfaces:
- Serializable,- TransactionAttribute,- TransactionDefinition
public abstract class DelegatingTransactionAttribute
extends DelegatingTransactionDefinition
implements TransactionAttribute, Serializable
TransactionAttribute implementation that delegates all calls to a given target
 TransactionAttribute instance. Abstract because it is meant to be subclassed,
 with subclasses overriding specific methods that are not supposed to simply delegate
 to the target instance.- Since:
- 1.2
- Author:
- Juergen Hoeller, Mark Paluch
- See Also:
- 
Field SummaryFields inherited from interface org.springframework.transaction.TransactionDefinitionISOLATION_DEFAULT, ISOLATION_READ_COMMITTED, ISOLATION_READ_UNCOMMITTED, ISOLATION_REPEATABLE_READ, ISOLATION_SERIALIZABLE, PROPAGATION_MANDATORY, PROPAGATION_NESTED, PROPAGATION_NEVER, PROPAGATION_NOT_SUPPORTED, PROPAGATION_REQUIRED, PROPAGATION_REQUIRES_NEW, PROPAGATION_SUPPORTS, TIMEOUT_DEFAULT
- 
Constructor SummaryConstructorsConstructorDescriptionDelegatingTransactionAttribute(TransactionAttribute targetAttribute) Create a DelegatingTransactionAttribute for the given target attribute.
- 
Method SummaryModifier and TypeMethodDescriptionReturn labels associated with this transaction attribute.Return a qualifier value associated with this transaction attribute.booleanrollbackOn(Throwable ex) Should we roll back on the given exception?Methods inherited from class org.springframework.transaction.support.DelegatingTransactionDefinitionequals, getIsolationLevel, getName, getPropagationBehavior, getTimeout, hashCode, isReadOnly, toStringMethods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.springframework.transaction.TransactionDefinitiongetIsolationLevel, getName, getPropagationBehavior, getTimeout, isReadOnly
- 
Constructor Details- 
DelegatingTransactionAttributeCreate a DelegatingTransactionAttribute for the given target attribute.- Parameters:
- targetAttribute- the target TransactionAttribute to delegate to
 
 
- 
- 
Method Details- 
getQualifierDescription copied from interface:TransactionAttributeReturn a qualifier value associated with this transaction attribute.This may be used for choosing a corresponding transaction manager to process this specific transaction. - Specified by:
- getQualifierin interface- TransactionAttribute
 
- 
getLabelsDescription copied from interface:TransactionAttributeReturn labels associated with this transaction attribute.This may be used for applying specific transactional behavior or follow a purely descriptive nature. - Specified by:
- getLabelsin interface- TransactionAttribute
 
- 
rollbackOnDescription copied from interface:TransactionAttributeShould we roll back on the given exception?- Specified by:
- rollbackOnin interface- TransactionAttribute
- Parameters:
- ex- the exception to evaluate
- Returns:
- whether to perform a rollback or not
 
 
-