Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/db
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24394/config/db
Modified Files:
DBJobConfigFactory.java
Log Message:
no message
Index: DBJobConfigFactory.java
===================================================================
RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/db/DBJobConfigFactory.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** DBJobConfigFactory.java 21 Mar 2006 04:26:51 -0000 1.8
--- DBJobConfigFactory.java 22 Mar 2006 14:20:45 -0000 1.9
***************
*** 80,84 ****
private static Logger logger=Logger.getLogger(DBJobConfigFactory.class);
! protected DBJobConfigFactory()
{
}
--- 80,94 ----
private static Logger logger=Logger.getLogger(DBJobConfigFactory.class);
! /**
! *<p>
! * <i>
! * Do not use this constructor to instantiate DBJobConfigFactory directly. Use
! * the factory method getJobConfigFactory in JobConfigFactory class to get the config factory
! * instance. This constructor has been provided to make sure this should be
! * instantiable and accessible to the JobConfigFactory class.
! * </i>
! * </p>
! */
! public DBJobConfigFactory()
{
}
***************
*** 94,98 ****
* @throws ConfigurationException If required properties are missing.
*/
! public void init(Map configFactoryProps)
{
logger.trace("Entering init");
--- 104,108 ----
* @throws ConfigurationException If required properties are missing.
*/
! protected void init(Map configFactoryProps)
{
logger.trace("Entering init");
|