package schedframe.scheduling.plugin.configuration; import java.util.HashMap; import java.util.Map; import schedframe.scheduling.events.SchedulingEventType; import schedframe.scheduling.plugin.SchedulingPluginConfiguration; public class LocalConfig implements SchedulingPluginConfiguration { private Map events = new HashMap(); public LocalConfig(){ events.put(SchedulingEventType.START_TASK_EXECUTION, null); events.put(SchedulingEventType.TASK_FINISHED, null); events.put(SchedulingEventType.TASK_REQUESTED_TIME_EXPIRED, null); //events.put(SchedulingEventType.TIMER, 3600); } public Map getServedEvents() { return events; } }