|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
T
- the interceptor bean classpublic interface Interceptor<T>
Represents an enabled interceptor.
Method Summary | |
---|---|
Set<Annotation> |
getInterceptorBindings()
Obtains the interceptor bindings of the interceptor. |
Object |
intercept(InterceptionType type,
T instance,
javax.interceptor.InvocationContext ctx)
Invokes the specified kind of lifecycle callback or method invocation interception upon the given interceptor instance. |
boolean |
intercepts(InterceptionType type)
Determines if the interceptor intercepts the specified kind of lifecycle callback or method invocation. |
Methods inherited from interface javax.enterprise.inject.spi.Bean |
---|
getBeanClass, getInjectionPoints |
Methods inherited from interface javax.enterprise.context.spi.Contextual |
---|
create, destroy |
Methods inherited from interface javax.enterprise.inject.spi.BeanAttributes |
---|
getName, getQualifiers, getScope, getStereotypes, getTypes, isAlternative, isNullable |
Method Detail |
---|
Set<Annotation> getInterceptorBindings()
Obtains the interceptor bindings of the interceptor.
boolean intercepts(InterceptionType type)
Determines if the interceptor intercepts the specified kind of lifecycle callback or method invocation.
type
- the kind of interception
Object intercept(InterceptionType type, T instance, javax.interceptor.InvocationContext ctx) throws Exception
Invokes the specified kind of lifecycle callback or method invocation interception upon the given interceptor instance.
type
- the kind of interceptioninstance
- the interceptor instance to invokectx
- the context for the invocation
exceptions
- thrown by the target method and/or the following interceptors in the chain
Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |