当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
AdvisorChainFactory (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.aop.framework
Interface AdvisorChainFactory
- All Known Implementing Classes:
- DefaultAdvisorChainFactory, HashMapCachingAdvisorChainFactory
public interface AdvisorChainFactory
Factory interface for advisor chains.
- Author:
- Rod Johnson, Juergen Hoeller
getInterceptorsAndDynamicInterceptionAdvice
List getInterceptorsAndDynamicInterceptionAdvice(Advised config,
Object proxy,
Method method,
Class targetClass)
- Determine a list of
MethodInterceptor
objects.
- Parameters:
config
- the AOP configuration in the form of an Advised objectproxy
- the proxy object (currently always null
;
this argument will be removed in Spring 2.1!)method
- the proxied methodtargetClass
- the target class
- Returns:
- List of MethodInterceptors (may also include InterceptorAndDynamicMethodMatchers)
Copyright © 2002-2007 The Spring Framework.