import java.rmi.Remote; import java.rmi.RemoteException; public interface HelloWord extends Remote { public String hello() throws RemoteException; }