//
//Server.  If successfull should send cookies
//
package rmicookie;

public interface CookieServer extends java.rmi.Remote {

    public String getCookie(int i) throws java.rmi.RemoteException;

}
