@Contract public interface InterceptorOrderingService
| Modifier and Type | Method and Description |
|---|---|
List<ConstructorInterceptor> |
modifyConstructorInterceptors(Constructor<?> constructor,
List<ConstructorInterceptor> currentList)
This method is called for each constructor that may be intercepted by the default
interception service.
|
List<MethodInterceptor> |
modifyMethodInterceptors(Method method,
List<MethodInterceptor> currentList)
This method is called for each method that may be intercepted by the default
interception service.
|
List<MethodInterceptor> modifyMethodInterceptors(Method method, List<MethodInterceptor> currentList)
method - The method that is to be interceptedcurrentList - The list that will be used to intercept the method if this
service returns nullList<ConstructorInterceptor> modifyConstructorInterceptors(Constructor<?> constructor, List<ConstructorInterceptor> currentList)
constructor - The constructor that is to be interceptedcurrentList - The list that will be used to intercept the constructor if this
service returns nullCopyright © 2009-2014 Oracle Corporation. All Rights Reserved.