Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/xml
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24394/config/xml
Modified Files:
XMLJobConfigFactory.java
Log Message:
no message
Index: XMLJobConfigFactory.java
===================================================================
RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/config/xml/XMLJobConfigFactory.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** XMLJobConfigFactory.java 21 Mar 2006 04:27:09 -0000 1.10
--- XMLJobConfigFactory.java 22 Mar 2006 14:20:45 -0000 1.11
***************
*** 75,80 ****
private static Logger logger=Logger.getLogger(XMLJobConfigFactory.class);
!
! protected XMLJobConfigFactory()
{
}
--- 75,90 ----
private static Logger logger=Logger.getLogger(XMLJobConfigFactory.class);
!
! /**
! *<p>
! * <i>
! * Do not use this constructor to instantiate XMLJobConfigFactory 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 XMLJobConfigFactory()
{
}
***************
*** 89,93 ****
* @throws ConfigurationException If required properties are missing.
*/
! public void init(Map configFactoryProps)
{
logger.trace("Entering init");
--- 99,103 ----
* @throws ConfigurationException If required properties are missing.
*/
! protected void init(Map configFactoryProps)
{
logger.trace("Entering init");
|