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