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

ch.lambdaj.proxy.InvocationInterceptor Maven / Gradle / Ivy

package ch.lambdaj.proxy;

import java.lang.reflect.*;
import java.lang.reflect.InvocationHandler;

import net.sf.cglib.proxy.*;

/**
 * @author Mario Fusco
 */
public abstract class InvocationInterceptor implements MethodInterceptor, InvocationHandler {

	public final Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) throws Throwable {
		return invoke(proxy, method, args);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy