package schedframe.scheduling.events; import java.util.List; public class TaskFailedEvent extends SchedulingEvent{ protected List epr; public TaskFailedEvent(List list){ super(SchedulingEventType.TASK_FAILED); this.epr = list; } public List getReservations(){ return this.epr; } }