[Batchserver-cvs] batchserver/src/org/jmonks/batchserver/framework/common ErrorCode.java,1.6,1.7
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-03-08 05:17:13
|
Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21288 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.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ErrorCode.java 8 Mar 2006 00:30:35 -0000 1.6 --- ErrorCode.java 8 Mar 2006 05:17:08 -0000 1.7 *************** *** 91,94 **** --- 91,96 ---- public static final ErrorCode MGMT_MNTR_CLASS_NAME_ATTRIB_NOT_FOUND = new ErrorCode(1009,"Attribute mgmt-mntr-class-name not found in mgmt-mntr-config element"); public static final ErrorCode REPOSITORY_CLASS_NAME_ATTRIB_NOT_FOUND = new ErrorCode(1010,"Attribute repository-class-name not found in repository-config element"); + public static final ErrorCode CONTROLLER_CLASS_NAME_ATTRIB_NOT_FOUND = new ErrorCode(1011,"Attribute controller-class-name not found in job-controller element"); + public static final ErrorCode NONE_OR_MULITPLE_JOB_CONTROLLER_CONFIG_TAGS = new ErrorCode(1012,"None or multiple job-controller-config elements found in framework configuration"); /** *************** *** 104,107 **** --- 106,112 ---- 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"); public static final ErrorCode NONE_OR_MULTIPLE_JOB_CONTROLLER_CONFIGS = new ErrorCode(2009,"None or multiple job-controller configurations found in job-config element"); + public static final ErrorCode JOB_CONTROLLER_CLASS_NOT_DEFINED = new ErrorCode(2010,"job-controller-class-name is not defined in job-controller"); + public static final ErrorCode JOB_CONTROLLER_CONFIG_CLASS_NOT_DEFINED = new ErrorCode(2011,"job controller config class is not defined in framework configuration"); + public static final ErrorCode JOB_CONTROLLER_CONFIG_CLASS_NOT_VALID = new ErrorCode(2012,"job controller config class is not a valid"); } |