- registerInterposedSynchronization(Synchronization) - Method in interface javax.transaction.TransactionSynchronizationRegistry
-
Register a Synchronization instance with special ordering
semantics.
- registerSynchronization(Synchronization) - Method in interface javax.transaction.Transaction
-
Register a synchronization object for the transaction currently
associated with the target object.
- REQUIRED - javax.transaction.Transactional.TxType
-
If called outside a transaction context, the interceptor must begin a new
JTA transaction, the managed bean method execution must then continue
inside this transaction context, and the transaction must be completed by
the interceptor.
- REQUIRES_NEW - javax.transaction.Transactional.TxType
-
If called outside a transaction context, the interceptor must begin a new
JTA transaction, the managed bean method execution must then continue
inside this transaction context, and the transaction must be completed by
the interceptor.
- resume(Transaction) - Method in interface javax.transaction.TransactionManager
-
Resume the transaction context association of the calling thread
with the transaction represented by the supplied Transaction object.
- rollback() - Method in interface javax.transaction.Transaction
-
Rollback the transaction represented by this Transaction object.
- rollback() - Method in interface javax.transaction.TransactionManager
-
Roll back the transaction associated with the current thread.
- rollback() - Method in interface javax.transaction.UserTransaction
-
Roll back the transaction associated with the current thread.
- RollbackException - Exception in javax.transaction
-
RollbackException exception is thrown when the transaction has been
marked for rollback only or the transaction has been rolled back
instead of committed.
- RollbackException() - Constructor for exception javax.transaction.RollbackException
-
- RollbackException(String) - Constructor for exception javax.transaction.RollbackException
-
- setRollbackOnly() - Method in interface javax.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 javax.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 javax.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 javax.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 javax.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 javax.transaction.UserTransaction
-
Modify the timeout value that is associated with transactions started
by the current thread with the begin method.
- Status - Interface in javax.transaction
-
The Status interface defines static variables used for transaction
status codes.
- STATUS_ACTIVE - Static variable in interface javax.transaction.Status
-
A transaction is associated with the target object and it is in the
active state.
- STATUS_COMMITTED - Static variable in interface javax.transaction.Status
-
A transaction is associated with the target object and it has been
committed.
- STATUS_COMMITTING - Static variable in interface javax.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 javax.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 javax.transaction.Status
-
No transaction is currently associated with the target object.
- STATUS_PREPARED - Static variable in interface javax.transaction.Status
-
A transaction is associated with the target object and it has been
prepared.
- STATUS_PREPARING - Static variable in interface javax.transaction.Status
-
A transaction is associated with the target object and it is in the
process of preparing.
- STATUS_ROLLEDBACK - Static variable in interface javax.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 javax.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 javax.transaction.Status
-
A transaction is associated with the target object but its
current status cannot be determined.
- SUPPORTS - javax.transaction.Transactional.TxType
-
If called outside a transaction context, managed bean method execution
must then continue outside a transaction context.
- suspend() - Method in interface javax.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 javax.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 javax.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 javax.transaction.SystemException
-
- SystemException(int) - Constructor for exception javax.transaction.SystemException
-
Create a SystemException with a given error code.
- SystemException(String) - Constructor for exception javax.transaction.SystemException
-
Create a SystemException with a given string.
- Transaction - Interface in javax.transaction
-
The Transaction interface allows operations to be performed against
the transaction in the target Transaction object.
- Transactional - Annotation Type in javax.transaction
-
The javax.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 Java EE specification, at both the class
and method level where method level annotations override those at the class level.
- Transactional.TxType - Enum in javax.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 javax.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 javax.transaction.TransactionalException
-
- TransactionManager - Interface in javax.transaction
-
The TransactionManager interface defines the methods that allow an
application server to manage transaction boundaries.
- TransactionRequiredException - Exception in javax.transaction
-
This exception indicates that a request carried a null transaction context,
but the target object requires an active transaction.
- TransactionRequiredException() - Constructor for exception javax.transaction.TransactionRequiredException
-
- TransactionRequiredException(String) - Constructor for exception javax.transaction.TransactionRequiredException
-
- TransactionRolledbackException - Exception in javax.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 javax.transaction.TransactionRolledbackException
-
- TransactionRolledbackException(String) - Constructor for exception javax.transaction.TransactionRolledbackException
-
- TransactionScoped - Annotation Type in javax.transaction
-
The javax.transaction.TransactionScoped annotation provides the ability to
specify a standard CDI scope to define bean instances whose lifecycle is
scoped to the currently active JTA transaction.
- TransactionSynchronizationRegistry - Interface in javax.transaction
-
This interface is intended for use by system level application server
components such as persistence managers, resource adapters, as well as
EJB and Web application components.