Uses of Interface
org.springframework.transaction.interceptor.TransactionAttribute

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 AbstractFallbackTransactionAttributeSource.getTransactionAttribute(Method method, Class targetClass)
          Return the transaction attribute for this method invocation.
protected  TransactionAttribute AbstractFallbackTransactionAttributeSource.findTransactionAttribute(Collection atts)
          Return the transaction attribute, given this set of attributes attached to a method or class.
 TransactionAttribute TransactionAttributeSource.getTransactionAttribute(Method method, Class targetClass)
          Return the transaction attribute for this method.
 TransactionAttribute TransactionAspectSupport.TransactionInfo.getTransactionAttribute()
           
 TransactionAttribute MethodMapTransactionAttributeSource.getTransactionAttribute(Method method, Class targetClass)
           
 TransactionAttribute MatchAlwaysTransactionAttributeSource.getTransactionAttribute(Method method, Class targetClass)
           
 TransactionAttribute NameMatchTransactionAttributeSource.getTransactionAttribute(Method method, Class targetClass)
           
 

Methods in org.springframework.transaction.interceptor with parameters of type TransactionAttribute
 void MethodMapTransactionAttributeSource.addTransactionalMethod(String name, TransactionAttribute attr)
          Add an attribute for a transactional method.
 void MethodMapTransactionAttributeSource.addTransactionalMethod(Class clazz, String mappedName, TransactionAttribute attr)
          Add an attribute for a transactional method.
 void MethodMapTransactionAttributeSource.addTransactionalMethod(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, "PROPAGATION_REQUIRED".
 void NameMatchTransactionAttributeSource.addTransactionalMethod(String methodName, TransactionAttribute attr)
          Add an attribute for a transactional method.
 



Copyright (C) 2003-2004 The Spring Framework Project.