javax.transaction |
|
Java Source File Name | Type | Comment |
HeuristicCommitException.java | Class | This exception is meant to be thrown by the rollback operation on
a resource to report that a heuristic decision was made and that all
relevant updates have been committed. |
HeuristicMixedException.java | Class | This exception is thrown to report that a heuristic decision was made and
that some some parts of the transaction have been committed while other
parts have been rolled back. |
HeuristicRollbackException.java | Class | This exception is thrown by the commit operation to report that a
heuristic decision was made and that all relevant updates have been
rolled back. |
InvalidTransactionException.java | Class | This exception indicates an invalid transaction. |
NotSupportedException.java | Class | The NotSupportedException exception indicates that an operation is not
supported. |
RollbackException.java | Class | The RollbackException exception indicates that either the transaction
has been rolled back or an operation cannot complete because the
transaction is marked for rollback only.
It is thrown under two circumstances:
-
At transaction commit time, if the transaction has been marked for
rollback only.
|
Status.java | Interface | The Status interface defines the constants for transaction status codes. |
Synchronization.java | Interface | This is the callback interface that has to be implemented by objects
interested in receiving notification before and after a transaction
commits or rolls back. |
SystemException.java | Class | This exception is thrown to indicate that the transaction manager has
encountered an unexpected error condition that prevents future
transaction services from proceeding. |
Transaction.java | Interface | The Transaction interface allows operations to be performed on
transactions. |
TransactionManager.java | Interface | The TransactionManager interface defines the methods that allow an
application server to manage transactions on behalf of the applications. |
TransactionRequiredException.java | Class | This exception indicates that a remote invocation request carried a null
transaction context, but that an active transaction context was needed. |
TransactionRolledbackException.java | Class | This exception indicates that the transaction context carried in the
remote invocation has been rolled back, or was marked for roll back only. |
UserTransaction.java | Interface | This interface allows an application to explicitly manage transactions. |