Class CompositeTransactionAttributeSource
- java.lang.Object
- org.springframework.transaction.interceptor.CompositeTransactionAttributeSource
- All Implemented Interfaces:
Serializable,TransactionAttributeSource
public class CompositeTransactionAttributeSource extends Object implements TransactionAttributeSource, Serializable
CompositeTransactionAttributeSourceimplementation that iterates over a given array ofTransactionAttributeSourceinstances.- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
- Serialized Form
Constructor Summary
Constructors Constructor Description CompositeTransactionAttributeSource(TransactionAttributeSource... transactionAttributeSources)Create a new CompositeTransactionAttributeSource for the given sources.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TransactionAttributegetTransactionAttribute(Method method, Class<?> targetClass)Return the transaction attribute for the given method, ornullif the method is non-transactional.TransactionAttributeSource[]getTransactionAttributeSources()Return the TransactionAttributeSource instances that this CompositeTransactionAttributeSource combines.
Constructor Detail
CompositeTransactionAttributeSource
public CompositeTransactionAttributeSource(TransactionAttributeSource... transactionAttributeSources)
Create a new CompositeTransactionAttributeSource for the given sources.- Parameters:
transactionAttributeSources- the TransactionAttributeSource instances to combine
Method Detail
getTransactionAttributeSources
public final TransactionAttributeSource[] getTransactionAttributeSources()
Return the TransactionAttributeSource instances that this CompositeTransactionAttributeSource combines.
getTransactionAttribute
public TransactionAttribute getTransactionAttribute(Method method, Class<?> targetClass)
Description copied from interface:TransactionAttributeSourceReturn the transaction attribute for the given method, ornullif the method is non-transactional.- Specified by:
getTransactionAttributein interfaceTransactionAttributeSource- Parameters:
method- the method to introspecttargetClass- the target class (may benull, in which case the declaring class of the method must be used)- Returns:
- the matching transaction attribute, or
nullif none found