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