package com.jiuqi.mobile.core.service.base; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.rmi.RemoteException; public class TestManagerInvocationHandler implements InvocationHandler{ /** * */ private static final long serialVersionUID = 2164042434913333987L; public TestManagerInvocationHandler() throws RemoteException { super(); } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { // Object obj = getImplClass().newInstance(); // return method.invoke(obj, args); return null; } }