public class HelloImpl extends java.rmi.server.UnicastRemoteObject implements Hello { public HelloImpl() throws java.rmi.RemoteException { super(); } public String Hello() throws java.rmi.RemoteException { System.out.println("returned \"Hello\" to the client."); return "Hello"; } }