import Java.rmi.*;
/**
* Remote interface for the RMIExampleServer
* @author Renga
**/
public interface RMIExample extends Remote {
/**
* Returns a string to the caller
* @return A string
* @throws RemoteException
**/
public String sayHello() throws RemoteException;
}