package org.async.rmi.client;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
/**
* Created by Barak Bar Orion
* 08/10/14.
*/
public class RemoteObjectInvocationHandler implements InvocationHandler{
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
return null;
}
}