package de.lmu.ifi.pp.util; import java.nio.charset.Charset; /** * History: * */ public interface ProtocolConstants { /** * Return value that is sent if the return type of a method is * void. */ public static final String VOID_RESPONSE = "OK"; /** * Argument separator */ public static final String SEP = "\t"; public static final Charset CHARSET = Charset.forName("UTF-8"); public static final String NEWLINE = "\n"; }