package RMIexample;

import java.rmi.*;

public interface ChatObjectInterface extends Remote
{
  public void receive(String name, String message) throws RemoteException;
}
