in src/java/org/apache/fulcrum/quartz/impl/QuartzSchedulerImpl.java [97:109]
public void configure(Configuration conf) throws ConfigurationException
{
Configuration quartzConf = conf.getChild(CONFIG_CONFIGURATION, true);
if(quartzConf.getChild(CONFIG_PROPERTIES, false) != null)
{
this.quartzProperties = Parameters.toProperties(Parameters.fromConfiguration(quartzConf.getChild(CONFIG_PROPERTIES)));
}
else if(quartzConf.getChild(CONFIG_PROPERTY_FILE, false) != null)
{
this.quartzPropertyFile = quartzConf.getChild(CONFIG_PROPERTY_FILE).getValue();
}
}