Package org.jboss.weld.interceptor.proxy
Class CustomInterceptorInvocation<T>
- java.lang.Object
-
- org.jboss.weld.interceptor.proxy.CustomInterceptorInvocation<T>
-
- All Implemented Interfaces:
InterceptorInvocation
public class CustomInterceptorInvocation<T> extends Object implements InterceptorInvocation
- Author:
- Marius Bogoevici
-
-
Constructor Summary
Constructors Constructor Description CustomInterceptorInvocation(Interceptor<T> interceptorBeanInstance, T interceptorInstance, InterceptionType interceptionType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<InterceptorMethodInvocation>getInterceptorMethodInvocations()ReturnsInterceptorMethodInvocationobjects representing interceptor methods to be invoked during an interceptor invocation.
-
-
-
Constructor Detail
-
CustomInterceptorInvocation
public CustomInterceptorInvocation(Interceptor<T> interceptorBeanInstance, T interceptorInstance, InterceptionType interceptionType)
-
-
Method Detail
-
getInterceptorMethodInvocations
public List<InterceptorMethodInvocation> getInterceptorMethodInvocations()
Description copied from interface:InterceptorInvocationReturnsInterceptorMethodInvocationobjects 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.- Specified by:
getInterceptorMethodInvocationsin interfaceInterceptorInvocation- Returns:
- interceptor method invocation list
-
-