public URL getDetailURL(Course course) throws MalformedURLException { Integer courseSequence = course.getCourseSequence(); URL detailURL = new URL(IConstants.courseInfoURL + courseSequence); return detailURL; }
public List<Schedule> getScheduleByCourse(Course course) { return course.getScheduleList(); }