Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/db
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13536
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.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** DBJobConfigFactory.java 14 Mar 2006 23:04:09 -0000 1.6
--- DBJobConfigFactory.java 17 Mar 2006 14:04:58 -0000 1.7
***************
*** 81,88 ****
/**
! * This constructor initializes the factory by accepting the required properties
! * map as a parameter to the constructor. If it doesnt find any required properties
* and values are not valid to initialize the factory,
! * throws ConfigurationException with the appropriate error code.
*
* @param configFactoryProps Map consists of all the properties defined for this factory.
--- 81,88 ----
/**
! * This method initializes the factory by accepting the required properties
! * as a map. If it doesnt find any required properties
* and values are not valid to initialize the factory,
! * throws ConfigurationException with the appropriate error message.
*
* @param configFactoryProps Map consists of all the properties defined for this factory.
***************
*** 90,96 ****
* @throws ConfigurationException If required properties are missing.
*/
! public DBJobConfigFactory(Map configFactoryProps)
{
! logger.trace("Entering constructor");
this.configFactoryProps=new HashMap(configFactoryProps);
/**
--- 90,96 ----
* @throws ConfigurationException If required properties are missing.
*/
! protected void init(Map configFactoryProps)
{
! logger.trace("Entering init");
this.configFactoryProps=new HashMap(configFactoryProps);
/**
***************
*** 114,118 ****
}
}
! logger.trace("Exiting constructor");
}
--- 114,118 ----
}
}
! logger.trace("Exiting init");
}
|