import java.rmi.*; /*************************************************************************** MyServerInterface -- The Server's Methods that are Available Remotely rmic only creates _Stub and _Skel classes for service classes that directly implement an interface that extends java.rmi.Remote. ***************************************************************************/ public interface MyServerInterface extends Remote { public String sayHello () throws RemoteException; }