Package org.jvnet.hk2.internal
Interface Utilities.Interceptors
-
- Enclosing class:
- Utilities
public static interface Utilities.Interceptors
The return type from getAllInterceptors
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<org.aopalliance.intercept.ConstructorInterceptor>
getConstructorInterceptors()
Gets the constructor interceptorsjava.util.Map<java.lang.reflect.Method,java.util.List<org.aopalliance.intercept.MethodInterceptor>>
getMethodInterceptors()
Gets the method interceptors
-
-
-
Method Detail
-
getMethodInterceptors
java.util.Map<java.lang.reflect.Method,java.util.List<org.aopalliance.intercept.MethodInterceptor>> getMethodInterceptors()
Gets the method interceptors- Returns:
- The possibly null set of method interceptors
-
getConstructorInterceptors
java.util.List<org.aopalliance.intercept.ConstructorInterceptor> getConstructorInterceptors()
Gets the constructor interceptors- Returns:
- The possibly null set of constructor interceptors
-
-