/**
 * @author Dr. Haiping Xu
 * Created at the CIS Department, UMass Dartmouth
 */

import java.rmi.*;

public interface ReceiveMessageInterface extends Remote {
    void receiveMessage(String message) throws RemoteException;
}

