1 | |
package org.kuali.student.enrollment.class2.acal.dto; |
2 | |
|
3 | |
import java.io.Serializable; |
4 | |
|
5 | |
import org.kuali.student.enrollment.acal.dto.TermInfo; |
6 | |
import org.kuali.student.enrollment.acal.dto.KeyDateInfo; |
7 | |
|
8 | |
|
9 | |
public class TermWrapper implements Serializable { |
10 | |
private static final long serialVersionUID = 1L; |
11 | |
|
12 | |
String id; |
13 | |
TermInfo termInfo; |
14 | |
KeyDateInfo classesMeetDates; |
15 | |
KeyDateInfo registrationPeriod; |
16 | |
KeyDateInfo dropPeriodEndsDate; |
17 | |
KeyDateInfo finalExaminationsDates; |
18 | |
KeyDateInfo gradesDueDate; |
19 | |
|
20 | 0 | public TermWrapper (){ |
21 | 0 | termInfo = new TermInfo(); |
22 | 0 | classesMeetDates = new KeyDateInfo(); |
23 | 0 | registrationPeriod = new KeyDateInfo(); |
24 | 0 | dropPeriodEndsDate = new KeyDateInfo(); |
25 | 0 | finalExaminationsDates = new KeyDateInfo(); |
26 | 0 | gradesDueDate = new KeyDateInfo(); |
27 | 0 | } |
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
public String getId() { |
33 | 0 | return id; |
34 | |
} |
35 | |
|
36 | |
|
37 | |
|
38 | |
public void setId(String id) { |
39 | 0 | this.id = id; |
40 | 0 | } |
41 | |
|
42 | |
|
43 | |
|
44 | |
public TermInfo getTermInfo() { |
45 | 0 | return termInfo; |
46 | |
} |
47 | |
|
48 | |
|
49 | |
|
50 | |
public void setTermInfo(TermInfo termInfo) { |
51 | 0 | this.termInfo = termInfo; |
52 | 0 | this.id = termInfo.getId(); |
53 | 0 | } |
54 | |
|
55 | |
|
56 | |
|
57 | |
public KeyDateInfo getClassesMeetDates() { |
58 | 0 | return classesMeetDates; |
59 | |
} |
60 | |
|
61 | |
|
62 | |
|
63 | |
public void setClassesMeetDates(KeyDateInfo classesMeetDates) { |
64 | 0 | this.classesMeetDates = classesMeetDates; |
65 | 0 | } |
66 | |
|
67 | |
|
68 | |
|
69 | |
public KeyDateInfo getRegistrationPeriod() { |
70 | 0 | return registrationPeriod; |
71 | |
} |
72 | |
|
73 | |
|
74 | |
|
75 | |
public void setRegistrationPeriod(KeyDateInfo registrationPeriod) { |
76 | 0 | this.registrationPeriod = registrationPeriod; |
77 | 0 | } |
78 | |
|
79 | |
|
80 | |
|
81 | |
public KeyDateInfo getDropPeriodEndsDate() { |
82 | 0 | return dropPeriodEndsDate; |
83 | |
} |
84 | |
|
85 | |
|
86 | |
|
87 | |
public void setDropPeriodEndsDate(KeyDateInfo dropPeriodEndsDate) { |
88 | 0 | this.dropPeriodEndsDate = dropPeriodEndsDate; |
89 | 0 | } |
90 | |
|
91 | |
|
92 | |
|
93 | |
public KeyDateInfo getFinalExaminationsDates() { |
94 | 0 | return finalExaminationsDates; |
95 | |
} |
96 | |
|
97 | |
|
98 | |
|
99 | |
public void setFinalExaminationsDates(KeyDateInfo finalExaminationsDates) { |
100 | 0 | this.finalExaminationsDates = finalExaminationsDates; |
101 | 0 | } |
102 | |
|
103 | |
|
104 | |
|
105 | |
public KeyDateInfo getGradesDueDate() { |
106 | 0 | return gradesDueDate; |
107 | |
} |
108 | |
|
109 | |
|
110 | |
|
111 | |
public void setGradesDueDate(KeyDateInfo gradesDueDate) { |
112 | 0 | this.gradesDueDate = gradesDueDate; |
113 | 0 | } |
114 | |
|
115 | |
} |