1 16 17 package org.springframework.aop.framework; 18 19 import org.aopalliance.intercept.MethodInterceptor; 20 21 import org.springframework.aop.MethodMatcher; 22 23 29 class InterceptorAndDynamicMethodMatcher { 30 31 final MethodInterceptor interceptor; 32 33 final MethodMatcher methodMatcher; 34 35 public InterceptorAndDynamicMethodMatcher(MethodInterceptor interceptor, MethodMatcher methodMatcher) { 36 this.interceptor = interceptor; 37 this.methodMatcher = methodMatcher; 38 } 39 40 } 41 | Popular Tags |