1 16 17 package org.springframework.aop.framework.adapter; 18 19 import org.aopalliance.aop.Advice; 20 import org.aopalliance.intercept.MethodInterceptor; 21 22 import org.springframework.aop.Advisor; 23 24 37 public interface AdvisorAdapter { 38 39 48 boolean supportsAdvice(Advice advice); 49 50 61 MethodInterceptor getInterceptor(Advisor advisor); 62 63 } 64 | Popular Tags |