| Package | Description |
|---|---|
| javax.enterprise.inject.spi |
Java Dependency Injection programmatic APIs.
|
| Modifier and Type | Method and Description |
|---|---|
static InterceptionType |
InterceptionType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterceptionType[] |
InterceptionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
Interceptor.intercept(InterceptionType type,
T instance,
InvocationContext ctx)
Invokes the callback
|
boolean |
Interceptor.intercepts(InterceptionType type)
Returns true if the interceptor intercepts the given type.
|
java.util.List<Interceptor<?>> |
BeanManager.resolveInterceptors(InterceptionType type,
java.lang.annotation.Annotation... bindings)
Resolves the interceptors for a given interceptor type
|