- java.lang.Object
-
- jakarta.resource.spi.work.ExecutionContext
-
- jakarta.resource.spi.work.TransactionContext
-
- All Implemented Interfaces:
WorkContext
,Serializable
public class TransactionContext extends ExecutionContext implements WorkContext
A standardWorkContext
that allows aWork
instance to propagate transaction related context information from an EIS to an application server.This class extends
ExecutionContext
so that a resource adapter developer could migrate their existing code fromExecutionContext
toTransactionContext
easily.- Since:
- 1.6
- See Also:
WorkContext
,ExecutionContext
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransactionContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Get the brief description of the role played by theWorkContext
and any other related debugging information.String
getName()
Get the associated name of theWorkContext
.-
Methods inherited from class jakarta.resource.spi.work.ExecutionContext
getTransactionTimeout, getXid, setTransactionTimeout, setXid
-
-
-
-
Method Detail
-
getDescription
public String getDescription()
Get the brief description of the role played by theWorkContext
and any other related debugging information. This could be used by the WorkManager and the resource adapter for debugging purposes.- Specified by:
getDescription
in interfaceWorkContext
- Returns:
- the associated description of the
WorkContext
-
getName
public String getName()
Get the associated name of theWorkContext
. This could be used by the WorkManager and the resource adapter for debugging purposes.- Specified by:
getName
in interfaceWorkContext
- Returns:
- the associated name of the
WorkContext
-
-