package rmiClient;

/**
 *
 * The interface to use the chat object. It is used by the chat server to call remote methods on the client.
 * 
 * @author Patrick and Tenzin
 * @date 25 nov 2008
 * @version 1.0
 */

import java.rmi.*;

public interface ChatObjectInterface extends Remote
{
  public void handle(String message) throws RemoteException;
}