Package org.jboss.weld.interceptor
Interface WeldInvocationContext
-
- All Superinterfaces:
jakarta.interceptor.InvocationContext
public interface WeldInvocationContext extends jakarta.interceptor.InvocationContextRepresents an enhanced version ofInvocationContext.- Author:
- Martin Kouba
- See Also:
- CDI-468
-
-
Field Summary
Fields Modifier and Type Field Description static StringINTERCEPTOR_BINDINGS_KEYDeprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <T extends Annotation>
Set<T>getInterceptorBindingsByType(Class<T> annotationType)Deprecated.useInvocationContext.getInterceptorBindings(Class)
-
-
-
Field Detail
-
INTERCEPTOR_BINDINGS_KEY
@Deprecated static final String INTERCEPTOR_BINDINGS_KEY
Deprecated.Deprecated, users are encouraged to useInvocationContext.getInterceptorBindings()instead.A key value under which we store interceptor bindings in
InvocationContext- See Also:
- Constant Field Values
-
-
Method Detail
-
getInterceptorBindingsByType
@Deprecated <T extends Annotation> Set<T> getInterceptorBindingsByType(Class<T> annotationType)
Deprecated.useInvocationContext.getInterceptorBindings(Class)
-
-