/*This code written by Nishant Agarwal
  Jul 12th, 2004
  nishant@purecode.us
*/
package protocol;

import java.io.*;

public interface Protocol {
    void clientAddRequest(String s1, String s2) throws IOException;
    void serverAddReply() throws IOException;
}
