import java.rmi.Remote;
import java.rmi.RemoteException;

public interface RemoteInterface extends Remote
{
    String REGISTRY_NAME = "RMI_Example";
    int REGISTRY_PORT = 3273;

    String getMessage() throws RemoteException;
}
