public interface InterceptionChain
The chain tracks the position of the last-invoked interceptor method internally.
Modifier and Type | Method and Description |
---|---|
boolean |
hasNextInterceptor()
Indicates whether there are not-yet-invoked interceptor methods in the chain.
|
Object |
invokeNextInterceptor(javax.interceptor.InvocationContext invocationContext)
Invokes the next interceptor method in the chain.
|
Object invokeNextInterceptor(javax.interceptor.InvocationContext invocationContext) throws Exception
InvocationContext.proceed()
is invoked by the
interceptor.invocationContext
- the invocation context to be passed to the interceptor methodException
boolean hasNextInterceptor()
Copyright © 2016. All rights reserved.