org.springframework.transaction.interceptor
Interface TransactionAttribute
- All Superinterfaces:
- TransactionDefinition
- All Known Implementing Classes:
- DefaultTransactionAttribute
- public interface TransactionAttribute
- extends TransactionDefinition
This interface adds a rollBackOn specification to TransactionDefinition.
As custom rollBackOn is only possible with AOP, this class resides
in the AOP transaction package.
- Since:
- 16-Mar-2003
- Author:
- Rod Johnson
- See Also:
DefaultTransactionAttribute
Fields inherited from interface org.springframework.transaction.TransactionDefinition |
ISOLATION_CONSTANT_PREFIX, ISOLATION_DEFAULT, ISOLATION_READ_COMMITTED, ISOLATION_READ_UNCOMMITTED, ISOLATION_REPEATABLE_READ, ISOLATION_SERIALIZABLE, PROPAGATION_CONSTANT_PREFIX, PROPAGATION_MANDATORY, PROPAGATION_NESTED, PROPAGATION_NEVER, PROPAGATION_NOT_SUPPORTED, PROPAGATION_REQUIRED, PROPAGATION_REQUIRES_NEW, PROPAGATION_SUPPORTS, TIMEOUT_DEFAULT |
rollbackOn
public boolean rollbackOn(Throwable ex)
- Should we roll back on a checked exception?
- Parameters:
ex
- the exception to evaluate
- Returns:
- boolean rollback or not
Copyright (C) 2003-2004 The Spring Framework Project.