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 GridConfig implements SchedulingPluginConfiguration { protected Map events; public GridConfig(){ this.events = new HashMap(); } public void addServedEvent(SchedulingEventType eventType, Object argument){ events.put(eventType, argument); } public Map getServedEvents() { return events; } }