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 LocalARConfig implements SchedulingPluginConfiguration { private Map events = new HashMap(); public LocalARConfig(){ events.put(SchedulingEventType.START_TASK_EXECUTION, null); events.put(SchedulingEventType.TASK_FINISHED, null); events.put(SchedulingEventType.RESERVATION_ACTIVE, null); events.put(SchedulingEventType.RESERVATION_FINISHED, null); } public Map getServedEvents() { return events; } }