1 | |
package org.kuali.student.enrollment.courseregistration.dto; |
2 | |
|
3 | |
import java.io.Serializable; |
4 | |
import java.util.List; |
5 | |
|
6 | |
import javax.xml.bind.annotation.XmlAccessType; |
7 | |
import javax.xml.bind.annotation.XmlAccessorType; |
8 | |
import javax.xml.bind.annotation.XmlAnyElement; |
9 | |
import javax.xml.bind.annotation.XmlElement; |
10 | |
import javax.xml.bind.annotation.XmlType; |
11 | |
|
12 | |
import org.w3c.dom.Element; |
13 | |
|
14 | |
@XmlAccessorType(XmlAccessType.FIELD) |
15 | |
@XmlType(name = "CourseScheduleViewInfo", propOrder = {"studentId", "courseScheduleEntries", "_futureElements"}) |
16 | |
public class CourseScheduleViewInfo implements Serializable { |
17 | |
|
18 | |
private static final long serialVersionUID = 1L; |
19 | |
|
20 | |
@XmlElement |
21 | |
private String studentId; |
22 | |
|
23 | |
@XmlElement |
24 | |
private List<CourseScheduleEntryViewInfo> courseScheduleEntries; |
25 | |
|
26 | |
@XmlAnyElement |
27 | |
private List<Element> _futureElements; |
28 | |
|
29 | 0 | public CourseScheduleViewInfo() {} |
30 | |
|
31 | 0 | public CourseScheduleViewInfo(List<CourseScheduleEntryViewInfo> courseScheduleEntries, String studentId) { |
32 | 0 | this.courseScheduleEntries = courseScheduleEntries; |
33 | 0 | this.studentId = studentId; |
34 | 0 | } |
35 | |
|
36 | |
public List<CourseScheduleEntryViewInfo> getCourseScheduleEntries() { |
37 | 0 | return courseScheduleEntries; |
38 | |
} |
39 | |
|
40 | |
public String getStudentId() { |
41 | 0 | return studentId; |
42 | |
} |
43 | |
|
44 | |
} |