Package jakarta.resource.spi.work
Class WorkContextErrorCodes
java.lang.Object
jakarta.resource.spi.work.WorkContextErrorCodes
This class models the possible error conditions that might occur during
associating an
WorkContext
with a Work
instance.
This class is not designed as an Enumerated type (Enum), as the error codes
listed below could be expanded to accommodate custom error conditions for
custom WorkContext
types.
- Since:
- 1.6
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Indicates a failure in recreating theWorkContext
instance.static final String
Indicates that the container cannot support recreating theWorkContext
instance.static final String
Indicates that there are more than one instance of aWorkContext
type passed in by theWork
instance.static final String
Indicates that aWorkContext
type, that was not specified as optional, passed in by theWork
instance is not supported by the container. -
Constructor Summary
-
Method Summary
-
Field Details
-
UNSUPPORTED_CONTEXT_TYPE
Indicates that aWorkContext
type, that was not specified as optional, passed in by theWork
instance is not supported by the container.- Since:
- 1.6
- See Also:
-
DUPLICATE_CONTEXTS
Indicates that there are more than one instance of aWorkContext
type passed in by theWork
instance.- Since:
- 1.6
- See Also:
-
CONTEXT_SETUP_FAILED
Indicates a failure in recreating theWorkContext
instance. ForTransactionContext
instances, theWorkManager
must use this failure code when it should have usedWorkException.TX_RECREATE_FAILED
as the error code.- Since:
- 1.6
- See Also:
-
CONTEXT_SETUP_UNSUPPORTED
Indicates that the container cannot support recreating theWorkContext
instance. ForTransactionContext
instances, theWorkManager
must use this failure code when it should have usedWorkException.TX_CONCURRENT_WORK_DISALLOWED
as the error code.- Since:
- 1.6
- See Also:
-
-
Constructor Details
-
WorkContextErrorCodes
public WorkContextErrorCodes()
-