COMP2207 Protocol
public class Protocol { // messages sent by Clients public final static String LIST_TOKEN = “LIST”; // also from Controller and Dstores public final static String STORE_TOKEN = “STORE”; // also from Dstores public final static String LOAD_TOKEN = “LOAD”; public final static String LOAD_DATA_TOKEN = “LOAD_DATA”; public final static String RELOAD_TOKEN = “RELOAD”; public […]