- setRollbackOnly() - Method in interface jakarta.transaction.Transaction
-
Modify the transaction associated with the target object such that
the only possible outcome of the transaction is to roll back the
transaction.
- setRollbackOnly() - Method in interface jakarta.transaction.TransactionManager
-
Modify the transaction associated with the current thread such that
the only possible outcome of the transaction is to roll back the
transaction.
- setRollbackOnly() - Method in interface jakarta.transaction.TransactionSynchronizationRegistry
-
Set the rollbackOnly status of the transaction bound to the
current thread at the time this method is called.
- setRollbackOnly() - Method in interface jakarta.transaction.UserTransaction
-
Modify the transaction associated with the current thread such that
the only possible outcome of the transaction is to roll back the
transaction.
- setTransactionTimeout(int) - Method in interface jakarta.transaction.TransactionManager
-
Modify the timeout value that is associated with transactions started
by the current thread with the begin method.
- setTransactionTimeout(int) - Method in interface jakarta.transaction.UserTransaction
-
Modify the timeout value that is associated with transactions started
by the current thread with the begin method.
- Status - Interface in jakarta.transaction
-
The Status interface defines static variables used for transaction
status codes.
- STATUS_ACTIVE - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and it is in the
active state.
- STATUS_COMMITTED - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and it has been
committed.
- STATUS_COMMITTING - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and it is in the
process of committing.
- STATUS_MARKED_ROLLBACK - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and it has been
marked for rollback, perhaps as a result of a setRollbackOnly operation.
- STATUS_NO_TRANSACTION - Static variable in interface jakarta.transaction.Status
-
No transaction is currently associated with the target object.
- STATUS_PREPARED - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and it has been
prepared.
- STATUS_PREPARING - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and it is in the
process of preparing.
- STATUS_ROLLEDBACK - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and the outcome
has been determined to be rollback.
- STATUS_ROLLING_BACK - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object and it is in the
process of rolling back.
- STATUS_UNKNOWN - Static variable in interface jakarta.transaction.Status
-
A transaction is associated with the target object but its
current status cannot be determined.
- suspend() - Method in interface jakarta.transaction.TransactionManager
-
Suspend the transaction currently associated with the calling
thread and return a Transaction object that represents the
transaction context being suspended.
- Synchronization - Interface in jakarta.transaction
-
The transaction manager supports a synchronization mechanism
that allows the interested party to be notified before and
after the transaction completes.
- SystemException - Exception in jakarta.transaction
-
The SystemException is thrown by the transaction manager to
indicate that it has encountered an unexpected error condition
that prevents future transaction services from proceeding.
- SystemException() - Constructor for exception jakarta.transaction.SystemException
-
- SystemException(String) - Constructor for exception jakarta.transaction.SystemException
-
Create a SystemException with a given string.
- SystemException(int) - Constructor for exception jakarta.transaction.SystemException
-
Create a SystemException with a given error code.