public interface AdvisorChainFactory
Modifier and Type | Method and Description |
---|---|
List<Object> |
getInterceptorsAndDynamicInterceptionAdvice(Advised config,
Method method,
Class<?> targetClass)
Determine a list of
MethodInterceptor objects
for the given advisor chain configuration. |
List<Object> getInterceptorsAndDynamicInterceptionAdvice(Advised config, Method method, Class<?> targetClass)
MethodInterceptor
objects
for the given advisor chain configuration.config
- the AOP configuration in the form of an Advised objectmethod
- the proxied methodtargetClass
- the target class (may be null
to indicate a proxy without
target object, in which case the method's declaring class is the next best option)