Package org.infinispan.transaction.tm
Class DummyTransaction
- java.lang.Object
-
- org.infinispan.transaction.tm.DummyTransaction
-
- All Implemented Interfaces:
javax.transaction.Transaction
@Deprecated public class DummyTransaction extends java.lang.Object implements javax.transaction.Transaction
Deprecated.- Since:
- 4.0
- Author:
- bela
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
FORCE_ROLLBACK_MESSAGE
Deprecated.
-
Constructor Summary
Constructors Constructor Description DummyTransaction(DummyBaseTransactionManager tm)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
commit()
Deprecated.Attempt to commit this transaction.boolean
delistResource(javax.transaction.xa.XAResource xaRes, int flag)
Deprecated.De-list an XA resource from this transaction.boolean
enlistResource(javax.transaction.xa.XAResource resource)
Deprecated.Enlist an XA resource with this transaction.boolean
equals(java.lang.Object obj)
Deprecated.javax.transaction.xa.XAResource
firstEnlistedResource()
Deprecated.java.util.Collection<javax.transaction.xa.XAResource>
getEnlistedResources()
Deprecated.java.util.Collection<javax.transaction.Synchronization>
getEnlistedSynchronization()
Deprecated.int
getStatus()
Deprecated.Get the status of the transaction.javax.transaction.xa.Xid
getXid()
Deprecated.int
hashCode()
Deprecated.Must be defined for increased performancevoid
registerSynchronization(javax.transaction.Synchronization sync)
Deprecated.Register aSynchronization
callback with this transaction.void
rollback()
Deprecated.Rolls back this transaction.void
runCommit(boolean forceRollback)
Deprecated.Runs the second phase of two-phase-commit protocol.boolean
runPrepare()
Deprecated.void
setRollbackOnly()
Deprecated.Mark the transaction so that the only possible outcome is a rollback.java.lang.String
toString()
Deprecated.
-
-
-
Field Detail
-
FORCE_ROLLBACK_MESSAGE
public static final java.lang.String FORCE_ROLLBACK_MESSAGE
Deprecated.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DummyTransaction
public DummyTransaction(DummyBaseTransactionManager tm)
Deprecated.
-
-
Method Detail
-
commit
public void commit() throws javax.transaction.RollbackException, javax.transaction.HeuristicMixedException, javax.transaction.HeuristicRollbackException, java.lang.SecurityException, javax.transaction.SystemException
Deprecated.Attempt to commit this transaction.- Specified by:
commit
in interfacejavax.transaction.Transaction
- Throws:
javax.transaction.RollbackException
- If the transaction was marked for rollback only, the transaction is rolled back and this exception is thrown.javax.transaction.SystemException
- If the transaction service fails in an unexpected way.javax.transaction.HeuristicMixedException
- If a heuristic decision was made and some some parts of the transaction have been committed while other parts have been rolled back.javax.transaction.HeuristicRollbackException
- If a heuristic decision to roll back the transaction was made.java.lang.SecurityException
- If the caller is not allowed to commit this transaction.
-
rollback
public void rollback() throws java.lang.IllegalStateException, javax.transaction.SystemException
Deprecated.Rolls back this transaction.- Specified by:
rollback
in interfacejavax.transaction.Transaction
- Throws:
java.lang.IllegalStateException
- If the transaction is in a state where it cannot be rolled back. This could be because the transaction is no longer active, or because it is in theprepared state
.javax.transaction.SystemException
- If the transaction service fails in an unexpected way.
-
setRollbackOnly
public void setRollbackOnly() throws java.lang.IllegalStateException, javax.transaction.SystemException
Deprecated.Mark the transaction so that the only possible outcome is a rollback.- Specified by:
setRollbackOnly
in interfacejavax.transaction.Transaction
- Throws:
java.lang.IllegalStateException
- If the transaction is not in an active state.javax.transaction.SystemException
- If the transaction service fails in an unexpected way.
-
getStatus
public int getStatus() throws javax.transaction.SystemException
Deprecated.Get the status of the transaction.- Specified by:
getStatus
in interfacejavax.transaction.Transaction
- Returns:
- The status of the transaction. This is one of the
Status
constants. - Throws:
javax.transaction.SystemException
- If the transaction service fails in an unexpected way.
-
enlistResource
public boolean enlistResource(javax.transaction.xa.XAResource resource) throws javax.transaction.RollbackException, java.lang.IllegalStateException, javax.transaction.SystemException
Deprecated.Enlist an XA resource with this transaction.- Specified by:
enlistResource
in interfacejavax.transaction.Transaction
- Returns:
true
if the resource could be enlisted with this transaction, otherwisefalse
.- Throws:
javax.transaction.RollbackException
- If the transaction is marked for rollback only.java.lang.IllegalStateException
- If the transaction is in a state where resources cannot be enlisted. This could be because the transaction is no longer active, or because it is in theprepared state
.javax.transaction.SystemException
- If the transaction service fails in an unexpected way.
-
delistResource
public boolean delistResource(javax.transaction.xa.XAResource xaRes, int flag) throws java.lang.IllegalStateException, javax.transaction.SystemException
Deprecated.De-list an XA resource from this transaction.- Specified by:
delistResource
in interfacejavax.transaction.Transaction
- Returns:
true
if the resource could be de-listed from this transaction, otherwisefalse
.- Throws:
java.lang.IllegalStateException
- If the transaction is in a state where resources cannot be de-listed. This could be because the transaction is no longer active.javax.transaction.SystemException
- If the transaction service fails in an unexpected way.
-
registerSynchronization
public void registerSynchronization(javax.transaction.Synchronization sync) throws javax.transaction.RollbackException, java.lang.IllegalStateException, javax.transaction.SystemException
Deprecated.Register aSynchronization
callback with this transaction.- Specified by:
registerSynchronization
in interfacejavax.transaction.Transaction
- Throws:
javax.transaction.RollbackException
- If the transaction is marked for rollback only.java.lang.IllegalStateException
- If the transaction is in a state whereSynchronization
callbacks cannot be registered. This could be because the transaction is no longer active, or because it is in theprepared state
.javax.transaction.SystemException
- If the transaction service fails in an unexpected way.
-
getEnlistedResources
public java.util.Collection<javax.transaction.xa.XAResource> getEnlistedResources()
Deprecated.
-
runPrepare
public boolean runPrepare()
Deprecated.
-
runCommit
public void runCommit(boolean forceRollback) throws javax.transaction.HeuristicMixedException, javax.transaction.HeuristicRollbackException, javax.transaction.RollbackException
Deprecated.Runs the second phase of two-phase-commit protocol. IfforceRollback
istrue
, then aRollbackException
is thrown with the messageFORCE_ROLLBACK_MESSAGE
.- Parameters:
forceRollback
- force the transaction to rollback.- Throws:
javax.transaction.HeuristicMixedException
javax.transaction.HeuristicRollbackException
javax.transaction.RollbackException
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
firstEnlistedResource
public javax.transaction.xa.XAResource firstEnlistedResource()
Deprecated.
-
getXid
public javax.transaction.xa.Xid getXid()
Deprecated.
-
getEnlistedSynchronization
public java.util.Collection<javax.transaction.Synchronization> getEnlistedSynchronization()
Deprecated.
-
hashCode
public final int hashCode()
Deprecated.Must be defined for increased performance- Overrides:
hashCode
in classjava.lang.Object
-
equals
public final boolean equals(java.lang.Object obj)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
-