All Downloads are FREE. Search and download functionalities are using the official Maven repository.

panda.ioc.aop.config.InterceptorPair Maven / Gradle / Ivy

The newest version!
package panda.ioc.aop.config;

import panda.aop.MethodInterceptor;
import panda.aop.MethodMatcher;

/**
 * @author wendal([email protected])
 */
public class InterceptorPair {

	private MethodInterceptor methodInterceptor;

	private MethodMatcher methodMatcher;

	public InterceptorPair(MethodInterceptor methodInterceptor, MethodMatcher methodMatcher) {
		super();
		this.methodInterceptor = methodInterceptor;
		this.methodMatcher = methodMatcher;
	}

	public MethodInterceptor getMethodInterceptor() {
		return methodInterceptor;
	}

	public void setMethodInterceptor(MethodInterceptor methodInterceptor) {
		this.methodInterceptor = methodInterceptor;
	}

	public MethodMatcher getMethodMatcher() {
		return methodMatcher;
	}

	public void setMethodMatcher(MethodMatcher methodMatcher) {
		this.methodMatcher = methodMatcher;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy