| |
|
| java.lang.Object org.springframework.transaction.interceptor.DelegatingTransactionAttribute
DelegatingTransactionAttribute | abstract public class DelegatingTransactionAttribute implements TransactionAttribute,Serializable(Code) | | TransactionAttribute implementation that delegates all calls to a given target
TransactionAttribute. Abstract because it is meant to be subclassed,
with subclasses overriding specific methods that should not simply delegate
to the target.
author: Juergen Hoeller since: 1.2 |
DelegatingTransactionAttribute | public DelegatingTransactionAttribute(TransactionAttribute targetAttribute)(Code) | | Create a DelegatingTransactionAttribute for the given target attribute.
Parameters: targetAttribute - the target TransactionAttribute to delegate to |
getIsolationLevel | public int getIsolationLevel()(Code) | | |
getPropagationBehavior | public int getPropagationBehavior()(Code) | | |
getTimeout | public int getTimeout()(Code) | | |
hashCode | public int hashCode()(Code) | | |
isReadOnly | public boolean isReadOnly()(Code) | | |
|
|
|