1 package net.sf.crispy.impl.rmi;
2
3 import java.rmi.Remote;
4 import java.rmi.RemoteException;
5 import java.util.Vector;
6
7 /**
8 * This is the interface for the RMI Invocation Handler.
9 *
10 * @author Linke
11 *
12 */
13 public interface RmiInvocationHandler extends Remote {
14
15 public abstract Object invoke(String pvClassName, String pvMethodName, Vector pvParams) throws RemoteException, Exception;
16
17 }