package schedframe.scheduling.plugin; import java.util.HashMap; import java.util.Map; import schedframe.PluginConfiguration; import schedframe.events.scheduling.SchedulingEventType; public class SchedulingPluginConfiguration implements PluginConfiguration { private Map events; public SchedulingPluginConfiguration(){ this.events = new HashMap(); } public void addServedEvent(SchedulingEventType eventType, Object argument){ events.put(eventType, argument); } public Map getServedEvents() { return events; } }