package schedframe.scheduling; import org.joda.time.DateTime; import org.qcg.broker.schemas.resreqs.ExecutionTimeType; public class IntervalTimeRequirements extends AbstractTimeRequirements{ private static final long serialVersionUID = 465127559825495346L; public IntervalTimeRequirements(DateTime start, DateTime end){ setEnd(end); setStart(start); } public ExecutionTimeType getDescription() { throw new RuntimeException("Not implemented."); } public String getDocument() throws Exception { throw new RuntimeException("Not implemented."); } }