|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TransactionAttribute | |
org.springframework.transaction.interceptor | AOP-based solution for declarative transaction demarcation. |
Uses of TransactionAttribute in org.springframework.transaction.interceptor |
Classes in org.springframework.transaction.interceptor that implement TransactionAttribute | |
class |
DefaultTransactionAttribute
Transaction attribute that takes the EJB approach to rolling back on runtime, but not checked, exceptions. |
class |
RuleBasedTransactionAttribute
TransactionAttribute implementation that works out whether a given exception should cause transaction rollback by applying a number of rollback rules, both positive and negative. |
Methods in org.springframework.transaction.interceptor that return TransactionAttribute | |
TransactionAttribute |
TransactionAttributeSource.getTransactionAttribute(java.lang.reflect.Method method,
java.lang.Class targetClass)
Return the transaction attribute for this method. |
TransactionAttribute |
NameMatchTransactionAttributeSource.getTransactionAttribute(java.lang.reflect.Method method,
java.lang.Class targetClass)
|
TransactionAttribute |
MethodMapTransactionAttributeSource.getTransactionAttribute(java.lang.reflect.Method method,
java.lang.Class targetClass)
|
TransactionAttribute |
MatchAlwaysTransactionAttributeSource.getTransactionAttribute(java.lang.reflect.Method method,
java.lang.Class targetClass)
|
TransactionAttribute |
AttributesTransactionAttributeSource.getTransactionAttribute(java.lang.reflect.Method method,
java.lang.Class targetClass)
Return the transaction attribute for this method invocation. |
protected TransactionAttribute |
AttributesTransactionAttributeSource.computeTransactionAttribute(java.lang.reflect.Method method,
java.lang.Class targetClass)
Same return as getTransactionAttribute method, but doesn't cache the result. |
protected TransactionAttribute |
AttributesTransactionAttributeSource.findTransactionAttribute(java.util.Collection atts)
Return the transaction attribute, given this set of attributes attached to a method or class. |
Methods in org.springframework.transaction.interceptor with parameters of type TransactionAttribute | |
void |
NameMatchTransactionAttributeSource.addTransactionalMethod(java.lang.String methodName,
TransactionAttribute attr)
Add an attribute for a transactional method. |
void |
MethodMapTransactionAttributeSource.addTransactionalMethod(java.lang.String name,
TransactionAttribute attr)
Add an attribute for a transactional method. |
void |
MethodMapTransactionAttributeSource.addTransactionalMethod(java.lang.Class clazz,
java.lang.String mappedName,
TransactionAttribute attr)
Add an attribute for a transactional method. |
void |
MethodMapTransactionAttributeSource.addTransactionalMethod(java.lang.reflect.Method method,
TransactionAttribute attr)
Add an attribute for a transactional method. |
void |
MatchAlwaysTransactionAttributeSource.setTransactionAttribute(TransactionAttribute transactionAttribute)
Allows a transaction attribute to be specified, using the String form, for example, "PROPOGATION_REQUIRED". |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |