package common; /** * The class used for holding the program constants. * * @author Daniela Fontes * @author Ivo Correia * @author Jo�o Penetra * @author Jo�o Barbosa * @author Ricardo Bernardino */ public class Constants { static public int DIM_H = 1000; static public int DIM_V = 600; static public int RMI_PORT = 2000; static public String ADMIN_USERNAME = "admin"; static public String ADMIN_PASSWORD = "ES2010"; static public boolean DEBUGGING = true; }