| Interface | Description |
|---|---|
| TransactionScopedCDIEventHelper |
| Class | Description |
|---|---|
| TransactionalExtension |
The CDI Portable Extension for @Transactional.
|
| TransactionalInterceptorBase |
Base class for all interceptors providing common logic for exception handling, etc.
|
| TransactionalInterceptorMandatory |
Transactional annotation Interceptor class for Mandatory transaction type,
ie javax.transaction.Transactional.TxType.MANDATORY
If called outside a transaction context, TransactionRequiredException will be thrown
If called inside a transaction context, managed bean method execution will then
continue under that context.
|
| TransactionalInterceptorNever |
Transactional annotation Interceptor class for Never transaction type,
ie javax.transaction.Transactional.TxType.NEVER
If called outside a transaction context, managed bean method execution will then
continue outside a transaction context.
|
| TransactionalInterceptorNotSupported |
Transactional annotation Interceptor class for NotSupported transaction type,
ie javax.transaction.Transactional.TxType.NOT_SUPPORTED
If called outside a transaction context, managed bean method execution will then
continue outside a transaction context.
|
| TransactionalInterceptorRequired |
Transactional annotation Interceptor class for Required transaction type,
ie javax.transaction.Transactional.TxType.REQUIRED
If called outside a transaction context, a new JTA transaction will begin,
the managed bean method execution will then continue inside this transaction context,
and the transaction will be committed.
|
| TransactionalInterceptorRequiresNew |
Transactional annotation Interceptor class for RequiresNew transaction type,
ie javax.transaction.Transactional.TxType.REQUIRES_NEW
If called outside a transaction context, a new JTA transaction will begin,
the managed bean method execution will then continue inside this transaction context,
and the transaction will be committed.
|
| TransactionalInterceptorSupports |
Transactional annotation Interceptor class for Supports transaction type,
ie javax.transaction.Transactional.TxType.SUPPORT
If called outside a transaction context, managed bean method execution will then
continue outside a transaction context.
|
| TransactionScopedBean<T> |
A wrapper for contextual instances of
TransactionScoped beans. |
| TransactionScopedCDIEventHelperImpl | |
| TransactionScopedCDIEventPayload |
Payload for CDI events: @Initialized(TransactionScoped.class) fired, when the context is initialized for
the first time and @Destroyed(TransactionScoped.class) fired, when the context is destroyed at
the end.
|
| TransactionScopedCDIUtil |
This class contains utility methods used for TransactionScoped related CDI event processing.
|
| TransactionScopedContextExtension |
The CDI Portable Extension for @TransactionScoped.
|
| TransactionScopedContextImpl |
The Context implementation for obtaining contextual instances of
TransactionScoped beans. |
Copyright © 2017. All rights reserved.