*/
public SchedulerWrapper(String _servletContextPath, String _schedulerConfigurationPath) {
this.servletContextPath = _servletContextPath;
this.schedulerConfigurationPath = _schedulerConfigurationPath;
SchedulerFactory factory = new StdSchedulerFactory();
log.info("------- Starting up -----------------------");
try {
this.scheduler = factory.getScheduler();
this.scheduler.addSchedulerListener(new AbstractSchedulerListener());
this.scheduler.start();
} catch (SchedulerException e) {
log.error("Can't initialize SchedulerWrapper: ", e);