org.springframework.aop.framework
Interface AdvisorChainFactory

All Superinterfaces:
AdvisedSupportListener
All Known Implementing Classes:
HashMapCachingAdvisorChainFactory

public interface AdvisorChainFactory
extends AdvisedSupportListener

Factory interface for advisor chains.

Author:
Rod Johnson, Juergen Hoeller

Method Summary
 List getInterceptorsAndDynamicInterceptionAdvice(Advised config, Object proxy, Method method, Class targetClass)
          Determine a list of MethodInterceptor and InterceptorAndDynamicMethodMatcher elements (using the latter if there is a dynamic method matcher that needs evaluation at runtime)
 
Methods inherited from interface org.springframework.aop.framework.AdvisedSupportListener
activated, adviceChanged
 

Method Detail

getInterceptorsAndDynamicInterceptionAdvice

List getInterceptorsAndDynamicInterceptionAdvice(Advised config,
                                                 Object proxy,
                                                 Method method,
                                                 Class targetClass)
Determine a list of MethodInterceptor and InterceptorAndDynamicMethodMatcher elements (using the latter if there is a dynamic method matcher that needs evaluation at runtime)

Parameters:
config - the AOP configuration in the form of an Advised obkect
proxy - the proxy object
method - the proxied method
targetClass - the target class
See Also:
AdvisorChainFactoryUtils.calculateInterceptorsAndDynamicInterceptionAdvice(org.springframework.aop.framework.Advised, java.lang.Object, java.lang.reflect.Method, java.lang.Class)


Copyright (c) 2002-2007 The Spring Framework Project.