[cvs] expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/services/dbobj JobHandlerRegistry.java

JCorporate Ltd jcorp at jcorp2.servlets.net
Thu Sep 16 12:23:33 PDT 2004


Update of /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/services/dbobj
In directory jcorp2.servlets.net:/tmp/cvs-serv8528/expresso-web/WEB-INF/src/com/jcorporate/expresso/services/dbobj

Modified Files:
	JobHandlerRegistry.java 
Log Message:
cosmetic reformatting


Index: JobHandlerRegistry.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/services/dbobj/JobHandlerRegistry.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** JobHandlerRegistry.java	1 Oct 2003 01:18:37 -0000	1.8
--- JobHandlerRegistry.java	16 Sep 2004 19:23:31 -0000	1.9
***************
*** 70,140 ****
  
  /**
!  * UserGroup is a grouping of a number of users for security purposes
!  *
!  * @author Mike Dubman
!  * @version $Revision$  $Date$
   */
! public class JobHandlerRegistry extends SecuredDBObject
! {
!     private static final String thisClass = JobHandlerRegistry.class.getName();
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_OSNAME = "OSName";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_LOAD_AVERAGE = "LoadAverage";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_CURR_JOBNUM = "CurrentJobs";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_TIMESTAMP = "TimStamp"; //InterBase Compatability Renaming
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_HOSTNAME = "HostName";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_STATUS = "Status";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_SERVERID = "ServerID";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_FREEMEM = "FreeMem";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_TOTALMEM = "TotalMem";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_USEDMEM = "UsedMem";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_POWERFACTOR = "PowerFactor";
  
      /**
!       * DOCUMENT ME!
!       */
      public static final String FLD_OPERATION = "ControlCommand";
  
--- 70,135 ----
  
  /**
!  * keep list of job handlers
   */
! public class JobHandlerRegistry extends SecuredDBObject {
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_OSNAME = "OSName";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_LOAD_AVERAGE = "LoadAverage";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_CURR_JOBNUM = "CurrentJobs";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_TIMESTAMP = "TimStamp"; //InterBase Compatability Renaming
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_HOSTNAME = "HostName";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_STATUS = "Status";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_SERVERID = "ServerID";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_FREEMEM = "FreeMem";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_TOTALMEM = "TotalMem";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_USEDMEM = "UsedMem";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_POWERFACTOR = "PowerFactor";
  
      /**
!      * DOCUMENT ME!
!      */
      public static final String FLD_OPERATION = "ControlCommand";
  
***************
*** 143,154 ****
       *
       * @throws DBException upon initialization error
-      *
       * @see com.jcorporate.expresso.core.dbobj.SecuredDBObject
       */
!     public JobHandlerRegistry() throws DBException
!     {
!         super();
!     }
!      /* JobHandlerRegistry() */
  
      /**
--- 138,145 ----
       *
       * @throws DBException upon initialization error
       * @see com.jcorporate.expresso.core.dbobj.SecuredDBObject
       */
!     public JobHandlerRegistry() throws DBException {
!     } /* JobHandlerRegistry() */
  
      /**
***************
*** 158,167 ****
       *
       * @param request - The controller request handed to you by the framework.
-      *
       * @throws DBException upon initialization error
       */
      public JobHandlerRegistry(ControllerRequest request)
!         throws DBException
!     {
          super(request);
      }
--- 149,156 ----
       *
       * @param request - The controller request handed to you by the framework.
       * @throws DBException upon initialization error
       */
      public JobHandlerRegistry(ControllerRequest request)
!             throws DBException {
          super(request);
      }
***************
*** 171,179 ****
       *
       * @param uid The Expresso user id
-      *
       * @throws DBException upon initialization error
       */
!     public JobHandlerRegistry(int uid) throws DBException
!     {
          super(uid);
      }
--- 160,166 ----
       *
       * @param uid The Expresso user id
       * @throws DBException upon initialization error
       */
!     public JobHandlerRegistry(int uid) throws DBException {
          super(uid);
      }
***************
*** 182,191 ****
       * DOCUMENT ME!
       *
-      * @throws DBException
-      *
       * @see com.jcorporate.expresso.core.dbobj.SecuredDBObject#setupFields
       */
!     protected synchronized void setupFields() throws DBException
!     {
          setTargetTable("JOBHANDLERREGISTRY");
          setDescription("DBjobHandlerRegistry");
--- 169,175 ----
       * DOCUMENT ME!
       *
       * @see com.jcorporate.expresso.core.dbobj.SecuredDBObject#setupFields
       */
!     protected synchronized void setupFields() throws DBException {
          setTargetTable("JOBHANDLERREGISTRY");
          setDescription("DBjobHandlerRegistry");
***************
*** 204,210 ****
          addKey(FLD_SERVERID);
          addKey(FLD_HOSTNAME);
!     }
!      /* setupFields() */
! }
!  /* JobHandlerRegistry */
! /* JobHandlerRegistry */
--- 188,191 ----
          addKey(FLD_SERVERID);
          addKey(FLD_HOSTNAME);
!     } /* setupFields() */
! } /* JobHandlerRegistry */



More information about the cvs mailing list