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