Interface InterceptorManager.AroundInvokeContext

All Superinterfaces:
jakarta.interceptor.InvocationContext
All Known Implementing Classes:
AroundInvokeInvocationContext, EjbInvocation
Enclosing class:
InterceptorManager

public static interface InterceptorManager.AroundInvokeContext extends jakarta.interceptor.InvocationContext
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Called from Interceptor Chain to invoke the actual bean method.

    Methods inherited from interface jakarta.interceptor.InvocationContext

    getConstructor, getContextData, getMethod, getParameters, getTarget, getTimer, proceed, setParameters
  • Method Details

    • getInterceptorInstances

      Object[] getInterceptorInstances()
    • invokeBeanMethod

      Object invokeBeanMethod() throws Throwable
      Called from Interceptor Chain to invoke the actual bean method. This method must throw any exception from the bean method *as is*, without being wrapped in an InvocationTargetException. The exception thrown from this method will be propagated through the application's interceptor code, so it must not be changed in order for any exception handling logic in that code to function properly.
      Throws:
      Throwable