Package io.quarkus.arc
Interface ArcInvocationContext
- All Superinterfaces:
jakarta.interceptor.InvocationContext
public interface ArcInvocationContext
extends jakarta.interceptor.InvocationContext
Enhanced version of
InvocationContext.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends Annotation>
TfindIterceptorBinding(jakarta.interceptor.InvocationContext context, Class<T> annotationType) Deprecated.<T extends Annotation>
TfindIterceptorBinding(Class<T> annotationType) Deprecated.useInvocationContext.getInterceptorBinding(Class)static <T extends Annotation>
List<T> findIterceptorBindings(jakarta.interceptor.InvocationContext context, Class<T> annotationType) Deprecated.useInvocationContext.getInterceptorBindings(Class)<T extends Annotation>
List<T> findIterceptorBindings(Class<T> annotationType) Deprecated.useInvocationContext.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.This key can be used to obtain the interceptor bindings from the context data.- See Also:
-
-
Method Details
-
getInterceptorBindings
Set<Annotation> getInterceptorBindings()- Specified by:
getInterceptorBindingsin interfacejakarta.interceptor.InvocationContext
-
findIterceptorBinding
Deprecated.useInvocationContext.getInterceptorBinding(Class) -
findIterceptorBindings
Deprecated.useInvocationContext.getInterceptorBindings(Class) -
findIterceptorBinding
@Deprecated static <T extends Annotation> T findIterceptorBinding(jakarta.interceptor.InvocationContext context, Class<T> annotationType) Deprecated.useInvocationContext.getInterceptorBinding(Class) -
findIterceptorBindings
@Deprecated static <T extends Annotation> List<T> findIterceptorBindings(jakarta.interceptor.InvocationContext context, Class<T> annotationType) Deprecated.useInvocationContext.getInterceptorBindings(Class)
-
InvocationContext.getInterceptorBinding(Class)