import java.rmi.*; /*************************************************************************** MyServerInterface -- The Server's Methods that are Available Remotely ***************************************************************************/ public interface MyServerInterface extends Remote { public String sayHello () throws RemoteException; }