| java.lang.Object | ||
| ↳ | org.springframework.transaction.support.DelegatingTransactionDefinition | |
| ↳ | org.springframework.transaction.interceptor.DelegatingTransactionAttribute | |
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.
|
[Expand]
Inherited Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
org.springframework.transaction.TransactionDefinition
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Create a DelegatingTransactionAttribute for the given target attribute.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Return a qualifier value associated with this transaction attribute.
| |||||||||||
Should we roll back on the given exception?
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.springframework.transaction.support.DelegatingTransactionDefinition
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.transaction.TransactionDefinition
| |||||||||||
From interface
org.springframework.transaction.interceptor.TransactionAttribute
| |||||||||||
Create a DelegatingTransactionAttribute for the given target attribute.
| targetAttribute | the target TransactionAttribute to delegate to |
|---|
Return a qualifier value associated with this transaction attribute.
This may be used for choosing a corresponding transaction manager to process this specific transaction.
Should we roll back on the given exception?
| ex | the exception to evaluate |
|---|