- Transaction - Interface in jakarta.transaction
-
The Transaction interface allows operations to be performed against
the transaction in the target Transaction object.
- Transactional - Annotation Type in jakarta.transaction
-
The jakarta.transaction.Transactional annotation provides the application
the ability to declaratively control transaction boundaries on CDI managed beans, as
well as classes defined as managed beans by the Jakarta EE specification, at both the class
and method level where method level annotations override those at the class level.
- Transactional.TxType - Enum in jakarta.transaction
-
The TxType element of the annotation indicates whether a bean method is to be
executed within a transaction context where the values provide the following
corresponding behavior.
- TransactionalException - Exception in jakarta.transaction
-
The TransactionalException thrown from the Transactional interceptors
implementation contains the original exception as its nested exception
and is a RuntimeException, therefore, by default any
transaction that was started as a result of a Transactional annotation
earlier in the call stream will be marked for rollback as a result of
the TransactionalException being thrown by the Transactional interceptor
of the second bean.
- TransactionalException(String, Throwable) - Constructor for exception jakarta.transaction.TransactionalException
-
- TransactionManager - Interface in jakarta.transaction
-
The TransactionManager interface defines the methods that allow an
application server to manage transaction boundaries.
- TransactionRequiredException - Exception in jakarta.transaction
-
This exception indicates that a request carried a null transaction context,
but the target object requires an active transaction.
- TransactionRequiredException() - Constructor for exception jakarta.transaction.TransactionRequiredException
-
- TransactionRequiredException(String) - Constructor for exception jakarta.transaction.TransactionRequiredException
-
- TransactionRolledbackException - Exception in jakarta.transaction
-
This exception indicates that the transaction associated with processing
of the request has been rolled back, or it has been marked to roll back.
- TransactionRolledbackException() - Constructor for exception jakarta.transaction.TransactionRolledbackException
-
- TransactionRolledbackException(String) - Constructor for exception jakarta.transaction.TransactionRolledbackException
-
- TransactionScoped - Annotation Type in jakarta.transaction
-
The jakarta.transaction.TransactionScoped annotation provides the ability to
specify a standard CDI scope to define bean instances whose lifecycle is
scoped to the currently active Jakarta Transactions transaction.
- TransactionSynchronizationRegistry - Interface in jakarta.transaction
-
This interface is intended for use by system level application server
components such as persistence managers, resource adapters, as well as
Jakarta Enterprise Beans and Web application components.