Package io.helidon.integrations.jta.cdi
Class DelegatingTransactionManager
- java.lang.Object
-
- io.helidon.integrations.jta.cdi.DelegatingTransactionManager
-
- All Implemented Interfaces:
javax.transaction.TransactionManager
@Deprecated(forRemoval=true) public abstract class DelegatingTransactionManager extends Object implements javax.transaction.TransactionManager
Deprecated, for removal: This API element is subject to removal in a future version.An equivalent class now exists in Narayana itself.Anabstract
TransactionManager
implementation that delegates all method invocations to anotherTransactionManager
.Design Notes
This class is
public
for convenience. It is extended by other non-public
internal classes.- See Also:
TransactionManager
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
DelegatingTransactionManager(javax.transaction.TransactionManager delegate)
Deprecated, for removal: This API element is subject to removal in a future version.Creates a newDelegatingTransactionManager
.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
begin()
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new transaction and associates it with the current thread.void
commit()
Deprecated, for removal: This API element is subject to removal in a future version.Completes the transaction associated with the current thread.int
getStatus()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the status of the transaction associated with the current thread.javax.transaction.Transaction
getTransaction()
Deprecated, for removal: This API element is subject to removal in a future version.Returns theTransaction
object that represents the transaction context of the calling thread.void
resume(javax.transaction.Transaction transaction)
Deprecated, for removal: This API element is subject to removal in a future version.Resumes the transaction context association of the calling thread with the transaction represented by the suppliedTransaction
object.void
rollback()
Deprecated, for removal: This API element is subject to removal in a future version.Rolls back the transaction associated with the current thread.void
setRollbackOnly()
Deprecated, for removal: This API element is subject to removal in a future version.Irrevocably modifies the transaction associated with the current thread such that the only possible outcome is for it to roll back.void
setTransactionTimeout(int seconds)
Deprecated, for removal: This API element is subject to removal in a future version.Sets the timeout value that is associated with transactions started by the current thread with thebegin()
method.javax.transaction.Transaction
suspend()
Deprecated, for removal: This API element is subject to removal in a future version.Suspends the transaction currently associated with the calling thread and returns aTransaction
that represents the transaction context being suspended, ornull
if the calling thread is not associated with a transaction.
-
-
-
Constructor Detail
-
DelegatingTransactionManager
protected DelegatingTransactionManager(javax.transaction.TransactionManager delegate)
Deprecated, for removal: This API element is subject to removal in a future version.Creates a newDelegatingTransactionManager
.- Parameters:
delegate
- theTransactionManager
to which all method invocations will be delegated; may benull
, but then aSystemException
will be thrown by every method in this class when invoked
-
-
Method Detail
-
begin
public void begin() throws javax.transaction.NotSupportedException, javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new transaction and associates it with the current thread.- Specified by:
begin
in interfacejavax.transaction.TransactionManager
- Throws:
javax.transaction.NotSupportedException
- if the thread is already associated with a transaction and thisTransactionManager
implementation does not support nested transactionsjavax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition
-
commit
public void commit() throws javax.transaction.RollbackException, javax.transaction.HeuristicMixedException, javax.transaction.HeuristicRollbackException, javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Completes the transaction associated with the current thread.When this method completes, the thread is no longer associated with a transaction.
- Specified by:
commit
in interfacejavax.transaction.TransactionManager
- Throws:
javax.transaction.RollbackException
- if the transaction has been rolled back rather than committedjavax.transaction.HeuristicMixedException
- if a heuristic decision was made and that some relevant updates have been committed while others have been rolled backjavax.transaction.HeuristicRollbackException
- if a heuristic decision was made and all relevant updates have been rolled backSecurityException
- if the thread is not allowed to commit the transactionIllegalStateException
- if the current thread is not associated with a transactionjavax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition
-
getStatus
public int getStatus() throws javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Returns the status of the transaction associated with the current thread.- Specified by:
getStatus
in interfacejavax.transaction.TransactionManager
- Returns:
- the transaction status expressed as the value of one of
the
int
constants in theStatus
class; if no transaction is associated with the current thread, this method returnsStatus.STATUS_NO_TRANSACTION
- Throws:
javax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition- See Also:
Status
-
getTransaction
public javax.transaction.Transaction getTransaction() throws javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Returns theTransaction
object that represents the transaction context of the calling thread.This method never returns
null
.- Specified by:
getTransaction
in interfacejavax.transaction.TransactionManager
- Returns:
- the
Transaction
object representing the transaction associated with the calling thread; nevernull
- Throws:
javax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition
-
resume
public void resume(javax.transaction.Transaction transaction) throws javax.transaction.InvalidTransactionException, javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Resumes the transaction context association of the calling thread with the transaction represented by the suppliedTransaction
object.When this method returns, the calling thread is associated with the transaction context specified.
- Specified by:
resume
in interfacejavax.transaction.TransactionManager
- Parameters:
transaction
- theTransaction
representing the transaction to be resumed; must not benull
- Throws:
javax.transaction.InvalidTransactionException
- iftransaction
is invalidIllegalStateException
- if the thread is already associated with another transactionjavax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition
-
rollback
public void rollback() throws javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Rolls back the transaction associated with the current thread.When this method completes, the thread is no longer associated with a transaction.
- Specified by:
rollback
in interfacejavax.transaction.TransactionManager
- Throws:
SecurityException
- if the thread is not allowed to roll back the transactionIllegalStateException
- if the current thread is not associated with a transactionjavax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition
-
setRollbackOnly
public void setRollbackOnly() throws javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Irrevocably modifies the transaction associated with the current thread such that the only possible outcome is for it to roll back.- Specified by:
setRollbackOnly
in interfacejavax.transaction.TransactionManager
- Throws:
IllegalStateException
- if the current thread is not associated with a transactionjavax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition
-
setTransactionTimeout
public void setTransactionTimeout(int seconds) throws javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Sets the timeout value that is associated with transactions started by the current thread with thebegin()
method.If an application has not called this method, the transaction service uses some default value for the transaction timeout.
- Specified by:
setTransactionTimeout
in interfacejavax.transaction.TransactionManager
- Parameters:
seconds
- the timeout in seconds; if the value is zero, the transaction service restores the default value; if the value is negative aSystemException
is thrown- Throws:
javax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition or ifseconds
is less than zero
-
suspend
public javax.transaction.Transaction suspend() throws javax.transaction.SystemException
Deprecated, for removal: This API element is subject to removal in a future version.Suspends the transaction currently associated with the calling thread and returns aTransaction
that represents the transaction context being suspended, ornull
if the calling thread is not associated with a transaction.This method may return
null
.When this method returns, the calling thread is no longer associated with a transaction.
- Specified by:
suspend
in interfacejavax.transaction.TransactionManager
- Returns:
- a
Transaction
representing the suspended transaction, ornull
- Throws:
javax.transaction.SystemException
- if thisTransactionManager
encounters an unexpected error condition
-
-