Package org.skife.intercept.interceptors.tx

The TransactionInterceptor can be used to implement container managed transactions in any environment that uses transactions.

See:
          Description

Interface Summary
Transaction A basic interface used to wrap whatever type of transaction is actually in use.
TransactionFactory A factory interface for obtaining transaction references.
 

Class Summary
ODMGTransactionFactory Provides a wrapper around ODMG transactions for the TransactionInterceptor
TransactionInterceptor Provides container managed transactions for arbitrary containers and transaction types.
 

Package org.skife.intercept.interceptors.tx Description

The TransactionInterceptor can be used to implement container managed transactions in any environment that uses transactions.

If you need a transaction system not included, all you have to do is provide implementations of TransactionFactory and Transaction for your transaction environment.

A sample implementation exists in the ODMGTransactionFactory which works with ODMG transactions, such as in OJB.