Package org.jboss.weld.interceptor.proxy
Interface InterceptorInvocation
-
- All Known Implementing Classes:
CustomInterceptorInvocation
public interface InterceptorInvocationRepresents an invocation of interceptor's methods on an interceptor instance.- Author:
- Marius Bogoevici
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<InterceptorMethodInvocation>getInterceptorMethodInvocations()ReturnsInterceptorMethodInvocationobjects representing interceptor methods to be invoked during an interceptor invocation.
-
-
-
Method Detail
-
getInterceptorMethodInvocations
List<InterceptorMethodInvocation> getInterceptorMethodInvocations()
ReturnsInterceptorMethodInvocationobjects representing interceptor methods to be invoked during an interceptor invocation.Each of the
InterceptorMethodInvocationshould be invoked as part of the invocation chain. The methods should be invoked in the given order.- Returns:
- interceptor method invocation list
-
-