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

com.wichell.framework.proxy.ProxyInterceptor Maven / Gradle / Ivy

The newest version!
package com.wichell.framework.proxy;

import java.lang.reflect.Method;

import net.sf.cglib.proxy.MethodProxy;
public interface ProxyInterceptor {
	public void before(Object obj, Method method, Object[] args,
			MethodProxy proxy) throws Throwable; 
	
	public Object after(Object obj, Method method, Object[] args,
			MethodProxy proxy,Object runVal) throws Throwable; 
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy