Package javax.resource.spi.work
Class TransactionContext
- java.lang.Object
-
- javax.resource.spi.work.ExecutionContext
-
- javax.resource.spi.work.TransactionContext
-
- All Implemented Interfaces:
java.io.Serializable,WorkContext
public class TransactionContext extends ExecutionContext implements WorkContext
A standardWorkContextthat allows aWorkinstance to propagate transaction related context information from an EIS to an application server.This class extends
ExecutionContextso that a resource adapter developer could migrate their existing code fromExecutionContexttoTransactionContexteasily.- Since:
- 1.6
- Version:
- Java EE Connector Architecture 1.6
- See Also:
WorkContext,ExecutionContext, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDDetermines if a deserialized instance of this class is compatible with this class.
-
Constructor Summary
Constructors Constructor Description TransactionContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get the brief description of the role played by theWorkContextand any other related debugging information.java.lang.StringgetName()Get the associated name of theWorkContext.-
Methods inherited from class javax.resource.spi.work.ExecutionContext
getTransactionTimeout, getXid, setTransactionTimeout, setXid
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Determines if a deserialized instance of this class is compatible with this class.- See Also:
- Constant Field Values
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Get the brief description of the role played by theWorkContextand any other related debugging information. This could be used by the WorkManager and the resource adapter for debugging purposes.- Specified by:
getDescriptionin interfaceWorkContext- Returns:
- the associated description of the
WorkContext
-
getName
public java.lang.String getName()
Get the associated name of theWorkContext. This could be used by the WorkManager and the resource adapter for debugging purposes.- Specified by:
getNamein interfaceWorkContext- Returns:
- the associated name of the
WorkContext
-
-