1 package alt.jiapi.interceptor; 2 3 import java.lang.reflect.InvocationHandler; 4 import java.lang.reflect.Method; 5 6 /** 7 * Class DefaultInvocationHandler. This class does nothing, but 8 * makes a call to target. 9 * 10 * @author Mika Riekkinen 11 */ 12 public class DefaultInvocationHandler implements InvocationHandler { 13 public Object invoke(Object o, Method m, Object[] args) throws Throwable { 14 return m.invoke(o, args); 15 } 16 } 17