Interface ArcInvocationContext

All Superinterfaces:
jakarta.interceptor.InvocationContext

public interface ArcInvocationContext extends jakarta.interceptor.InvocationContext
Enhanced version of InvocationContext.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Deprecated.
  • Method Summary

    Modifier and Type
    Method
    Description
    static <T extends Annotation>
    T
    findIterceptorBinding(jakarta.interceptor.InvocationContext context, Class<T> annotationType)
    Deprecated.
    use InvocationContext.getInterceptorBinding(Class)
    <T extends Annotation>
    T
    findIterceptorBinding(Class<T> annotationType)
    Deprecated.
    use InvocationContext.getInterceptorBinding(Class)
    static <T extends Annotation>
    List<T>
    findIterceptorBindings(jakarta.interceptor.InvocationContext context, Class<T> annotationType)
    Deprecated.
    use InvocationContext.getInterceptorBindings(Class)
    <T extends Annotation>
    List<T>
    findIterceptorBindings(Class<T> annotationType)
    Deprecated.
    use InvocationContext.getInterceptorBindings(Class)
     

    Methods inherited from interface jakarta.interceptor.InvocationContext

    getConstructor, getContextData, getInterceptorBinding, getInterceptorBindings, getMethod, getParameters, getTarget, getTimer, proceed, setParameters
  • Field Details

    • KEY_INTERCEPTOR_BINDINGS

      @Deprecated static final String KEY_INTERCEPTOR_BINDINGS
      Deprecated.
      This key can be used to obtain the interceptor bindings from the context data.
      See Also:
  • Method Details

    • getInterceptorBindings

      Set<Annotation> getInterceptorBindings()
      Specified by:
      getInterceptorBindings in interface jakarta.interceptor.InvocationContext
    • findIterceptorBinding

      @Deprecated <T extends Annotation> T findIterceptorBinding(Class<T> annotationType)
      Deprecated.
      use InvocationContext.getInterceptorBinding(Class)
    • findIterceptorBindings

      @Deprecated <T extends Annotation> List<T> findIterceptorBindings(Class<T> annotationType)
      Deprecated.
      use InvocationContext.getInterceptorBindings(Class)
    • findIterceptorBinding

      @Deprecated static <T extends Annotation> T findIterceptorBinding(jakarta.interceptor.InvocationContext context, Class<T> annotationType)
      Deprecated.
      use InvocationContext.getInterceptorBinding(Class)
    • findIterceptorBindings

      @Deprecated static <T extends Annotation> List<T> findIterceptorBindings(jakarta.interceptor.InvocationContext context, Class<T> annotationType)
      Deprecated.
      use InvocationContext.getInterceptorBindings(Class)