[Batchserver-cvs] batchserver/src/org/jmonks/batchserver/framework/common ErrorCode.java,1.4,1.5
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-03-07 23:25:38
|
Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16597 Modified Files: ErrorCode.java Log Message: no message Index: ErrorCode.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/common/ErrorCode.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ErrorCode.java 7 Mar 2006 03:42:43 -0000 1.4 --- ErrorCode.java 7 Mar 2006 23:25:28 -0000 1.5 *************** *** 96,104 **** */ public static final ErrorCode JOB_NOT_CONFIGURED = new ErrorCode(2001,"job is not configured in the job configuration source"); ! public static final ErrorCode JOB_CONFIG_FACTORY_CLASS_NOT_VALID = new ErrorCode(2002,"defined configuration factory class is not valid"); ! public static final ErrorCode JOB_CONFIG_FACTORY_CLASS_NOT_FOUND = new ErrorCode(2003,"defined configuration factory class could not be found"); ! public static final ErrorCode MISSING_PROPS_XML_CONFIG_FACTORY = new ErrorCode(2003,"required properties are missing in xml config factory configuration"); ! public static final ErrorCode UNABLE_TO_LOAD_XML_JOB_CONFIG_FILE = new ErrorCode(2004,"configured xml job configuration file cannot be loaded"); ! public static final ErrorCode INVALID_JOB_CONFIG_FILE_FORMAT = new ErrorCode(2005,"xml job configuration file is not in a valid format"); } --- 96,106 ---- */ public static final ErrorCode JOB_NOT_CONFIGURED = new ErrorCode(2001,"job is not configured in the job configuration source"); ! public static final ErrorCode JOB_CONFIG_FACTORY_CLASS_NOT_VALID = new ErrorCode(2002,"defined configuration factory class is not assignable to the JobConfigFactory super class or cannot be instantiated because of illegal access to constructor or exception in constructor"); ! public static final ErrorCode JOB_CONFIG_FACTORY_CLASS_NOT_FOUND = new ErrorCode(2003,"defined configuration factory class could not be found on the classpath"); ! public static final ErrorCode JOB_CONFIG_FACTORY_CLASS_CONSTRUCTOR_NOT_FOUND = new ErrorCode(2004,"constructor takes map as parameter not found in defined config factory class"); ! public static final ErrorCode XML_JOB_CONFIG_FACTORY_PROPERTIES_MISSING = new ErrorCode(2005,"required properties for XMLJobConfigFactory are missing"); ! public static final ErrorCode XML_JOB_CONFIG_FACTORY_INVALID_ABS_LOCATION = new ErrorCode(2006,"defined absolute file path for the XML Job Configuration file is not valid"); ! public static final ErrorCode XML_JOB_CONFIG_FACTORY_INVALID_CLASSPATH_LOCATION = new ErrorCode(2006,"defined classpath location for the XML Job Configiguation file is not valid"); ! public static final ErrorCode NO_BATCH_CONFIG_ELEMENT_IN_XML_JOB_CONFIGURATION = new ErrorCode(2008,"could not load the batch-config element from the defined XML job configuration file"); } |