package simplechat;

import java.util.List;
import java.rmi.*; 

public interface Server extends Remote 
{
    public static String SERVICE_NAME = "SimpleChatService";
    public final static int PORT = 5051;
    
    public void login( Client client, String name ) throws RemoteException;
    
    public void logout( Client client ) throws RemoteException; 
    
    public void update( Message message ) throws RemoteException;
    
    public List<String> list() throws RemoteException; 
} 