Class TransactionalInterceptorNotSupported

  • All Implemented Interfaces:
    Serializable

    @Priority(200)
    @Interceptor
    public class TransactionalInterceptorNotSupported
    extends TransactionalInterceptorBase
    Transactional annotation Interceptor class for NotSupported transaction type, ie jakarta.transaction.Transactional.TxType.NOT_SUPPORTED If called outside a transaction context, managed bean method execution will then continue outside a transaction context. If called inside a transaction context, the current transaction context will be suspended, the managed bean method execution will then continue outside a transaction context, and the previously suspended transaction will be resumed.
    Author:
    Paul Parkinson
    See Also:
    Serialized Form
    • Constructor Detail

      • TransactionalInterceptorNotSupported

        public TransactionalInterceptorNotSupported()
    • Method Detail

      • transactional

        public Object transactional​(jakarta.interceptor.InvocationContext ctx)
                             throws Exception
        Throws:
        Exception