+ schedulerClass.getName() + " must implement "
+ SchedulerFactory.class.getName());
}
// initialize the scheduler factory
final SchedulerFactory sf = (SchedulerFactory) schedulerClass
.getConstructor(AgentHost.class, Map.class).newInstance(
this, params);
setSchedulerFactory(sf);
LOG.info("Initialized scheduler factory: "
+ sf.getClass().getName());
} catch (final Exception e) {
LOG.log(Level.WARNING, "", e);
}
}