com.github.datalking.aop.framework.InterceptorAndDynamicMethodMatcher Maven / Gradle / Ivy
package com.github.datalking.aop.framework;
import com.github.datalking.aop.MethodMatcher;
import org.aopalliance.intercept.MethodInterceptor;
/**
* @author yaoo on 4/19/18
*/
public class InterceptorAndDynamicMethodMatcher {
final MethodInterceptor interceptor;
final MethodMatcher methodMatcher;
public InterceptorAndDynamicMethodMatcher(MethodInterceptor interceptor, MethodMatcher methodMatcher) {
this.interceptor = interceptor;
this.methodMatcher = methodMatcher;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy