1 16 17 package org.springframework.aop.framework; 18 19 import java.lang.reflect.Method ; 20 import java.util.List ; 21 22 34 public abstract class AdvisorChainFactoryUtils { 35 36 39 public static final AdvisorChainFactory SIMPLE_ADVISOR_CHAIN_FACTORY = new DefaultAdvisorChainFactory(); 40 41 42 52 public static List calculateInterceptorsAndDynamicInterceptionAdvice( 53 Advised config, Object proxy, Method method, Class targetClass) { 54 55 return SIMPLE_ADVISOR_CHAIN_FACTORY.getInterceptorsAndDynamicInterceptionAdvice( 56 config, proxy, method, targetClass); 57 } 58 59 } 60 | Popular Tags |