[Batchserver-cvs] batchserver/src/org/jmonks/batchserver/framework DefaultRepository.java,1.1,1.2 Jo
Brought to you by:
suresh_pragada
Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26032 Modified Files: DefaultRepository.java JobContext.java JobStatistics.java LoggingManager.java Main.java Repository.java Log Message: no message Index: JobContext.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/JobContext.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JobContext.java 4 Mar 2006 04:35:08 -0000 1.1 --- JobContext.java 4 Mar 2006 04:48:52 -0000 1.2 *************** *** 9,14 **** * to repsoitory. * </p> ! * @author : Suresh Pragada * @version 1.0 */ public class JobContext --- 9,15 ---- * to repsoitory. * </p> ! * @author Suresh Pragada * @version 1.0 + * @since 1.0 */ public class JobContext *************** *** 25,29 **** { ! return null; } --- 26,31 ---- { ! return null; ! } *************** *** 38,42 **** { ! return null; } --- 40,45 ---- { ! return null; ! } Index: JobStatistics.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/JobStatistics.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JobStatistics.java 4 Mar 2006 04:35:08 -0000 1.1 --- JobStatistics.java 4 Mar 2006 04:48:52 -0000 1.2 *************** *** 6,11 **** * This represents all the statistics related to the job. * ! * @author : Suresh Pragada * @version 1.0 */ public class JobStatistics --- 6,12 ---- * This represents all the statistics related to the job. * ! * @author Suresh Pragada * @version 1.0 + * @since 1.0 */ public class JobStatistics Index: LoggingManager.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/LoggingManager.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LoggingManager.java 4 Mar 2006 04:35:08 -0000 1.1 --- LoggingManager.java 4 Mar 2006 04:48:52 -0000 1.2 *************** *** 4,8 **** /** * <p> ! * This class provides the logging services to the framework. * It defines the default logging mechanism at the framework level * which works for all the jobs and provide the facility to --- 4,8 ---- /** * <p> ! * Logging Manager provides the logging services to the framework. * It defines the default logging mechanism at the framework level * which works for all the jobs and provide the facility to *************** *** 22,27 **** * configuration file. * </p> ! * @author : Suresh Pragada * @version 1.0 */ public class LoggingManager { --- 22,28 ---- * configuration file. * </p> ! * @author Suresh Pragada * @version 1.0 + * @since 1.0 */ public class LoggingManager { Index: Repository.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/Repository.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Repository.java 4 Mar 2006 04:35:08 -0000 1.1 --- Repository.java 4 Mar 2006 04:48:52 -0000 1.2 *************** *** 6,10 **** /** * <p> ! * This interface provides utility methods to access and use the repository. * There could be differnt implementations of the repository. Framework * configuration defines which implementation should be used for this framework. --- 6,10 ---- /** * <p> ! * Repository provides utility methods to access and use the repository. * There could be differnt implementations of the repository. Framework * configuration defines which implementation should be used for this framework. *************** *** 13,18 **** * information between framework and server. * </p> ! * @author : Suresh Pragada * @version 1.0 */ public abstract class Repository --- 13,19 ---- * information between framework and server. * </p> ! * @author Suresh Pragada * @version 1.0 + * @since 1.0 */ public abstract class Repository Index: Main.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/Main.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Main.java 4 Mar 2006 04:35:08 -0000 1.1 --- Main.java 4 Mar 2006 04:48:52 -0000 1.2 *************** *** 10,18 **** /** * <p> ! * This class is the interface to the batch framework. ! * This provides the methods accept the information to identify the job and kick off. * The framework can be executed either through command line as an independent program or from any other java program. * The information on how to kickoff using these two methods available in {@link #main(String[])} and {@link #process(Map)} methods of this class. - * <br><br> * </p> * --- 10,17 ---- /** * <p> ! * Main class is the interface to the batch framework. ! * This provides the methods to accept the information to identify the job and kick off the jobs. * The framework can be executed either through command line as an independent program or from any other java program. * The information on how to kickoff using these two methods available in {@link #main(String[])} and {@link #process(Map)} methods of this class. * </p> * Index: DefaultRepository.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/DefaultRepository.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DefaultRepository.java 4 Mar 2006 04:35:08 -0000 1.1 --- DefaultRepository.java 4 Mar 2006 04:48:52 -0000 1.2 *************** *** 16,21 **** * * </p> ! * @author : Suresh Pragada * @version 1.0 */ public abstract class DefaultRepository extends Repository --- 16,22 ---- * * </p> ! * @author Suresh Pragada * @version 1.0 + * @since 1.0 */ public abstract class DefaultRepository extends Repository |