package hello;

import java.rmi.*;

public interface Hello extends Remote {
  public String getHello(String name) throws RemoteException;
}

