Enum Class Transactional.TxType
- All Implemented Interfaces:
Serializable
,Comparable<Transactional.TxType>
,Constable
- Enclosing class:
- Transactional
- Version:
- Jakarta Transactions 2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIf called outside a transaction context, a TransactionalException with a nested TransactionRequiredException must be thrown.If called outside a transaction context, managed bean method execution must then continue outside a transaction context.If called outside a transaction context, managed bean method execution must then continue outside a transaction context.If called outside a transaction context, the interceptor must begin a new Jakarta Transactions transaction, the managed bean method execution must then continue inside this transaction context, and the transaction must be completed by the interceptor.If called outside a transaction context, the interceptor must begin a new Jakarta Transactions transaction, the managed bean method execution must then continue inside this transaction context, and the transaction must be completed by the interceptor.If called outside a transaction context, managed bean method execution must then continue outside a transaction context. -
Method Summary
Modifier and TypeMethodDescriptionstatic Transactional.TxType
Returns the enum constant of this class with the specified name.static Transactional.TxType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REQUIRED
If called outside a transaction context, the interceptor must begin a new Jakarta Transactions transaction, the managed bean method execution must then continue inside this transaction context, and the transaction must be completed by the interceptor.
If called inside a transaction context, the managed bean method execution must then continue inside this transaction context.
-
REQUIRES_NEW
If called outside a transaction context, the interceptor must begin a new Jakarta Transactions transaction, the managed bean method execution must then continue inside this transaction context, and the transaction must be completed by the interceptor.
If called inside a transaction context, the current transaction context must be suspended, a new Jakarta Transactions transaction will begin, the managed bean method execution must then continue inside this transaction context, the transaction must be completed, and the previously suspended transaction must be resumed.
-
MANDATORY
If called outside a transaction context, a TransactionalException with a nested TransactionRequiredException must be thrown.
If called inside a transaction context, managed bean method execution will then continue under that context.
-
SUPPORTS
If called outside a transaction context, managed bean method execution must then continue outside a transaction context.
If called inside a transaction context, the managed bean method execution must then continue inside this transaction context.
-
NOT_SUPPORTED
If called outside a transaction context, managed bean method execution must then continue outside a transaction context.
If called inside a transaction context, the current transaction context must be suspended, the managed bean method execution must then continue outside a transaction context, and the previously suspended transaction must be resumed by the interceptor that suspended it after the method execution has completed.
-
NEVER
If called outside a transaction context, managed bean method execution must then continue outside a transaction context.
If called inside a transaction context, a TransactionalException with a nested InvalidTransactionException must be thrown.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-