1 | |
package org.kuali.student.enrollment.class2.registration.dto; |
2 | |
|
3 | |
import org.kuali.student.enrollment.courseoffering.dto.ActivityOfferingInfo; |
4 | |
import org.kuali.student.enrollment.courseoffering.dto.CourseOfferingInfo; |
5 | |
import org.kuali.student.enrollment.courseoffering.dto.RegistrationGroupInfo; |
6 | |
|
7 | |
import java.io.Serializable; |
8 | |
import java.util.ArrayList; |
9 | |
import java.util.List; |
10 | |
|
11 | |
public class CourseOfferingInfoWrapper implements Serializable { |
12 | |
private static final long serialVersionUID = 1L; |
13 | |
|
14 | |
private CourseOfferingInfo courseOffering; |
15 | |
|
16 | |
private List<RegistrationGroupInfoWrapper> registrationGroupInfoWrappers; |
17 | |
|
18 | 0 | public CourseOfferingInfoWrapper() { |
19 | 0 | registrationGroupInfoWrappers = new ArrayList<RegistrationGroupInfoWrapper>(); |
20 | 0 | } |
21 | |
|
22 | |
public List<RegistrationGroupInfoWrapper> getRegistrationGroupInfoWrappers() { |
23 | 0 | return registrationGroupInfoWrappers; |
24 | |
} |
25 | |
|
26 | |
public void setRegistrationGroupInfoWrappers(List<RegistrationGroupInfoWrapper> registrationGroupInfoWrappers) { |
27 | 0 | this.registrationGroupInfoWrappers = registrationGroupInfoWrappers; |
28 | 0 | } |
29 | |
|
30 | |
public CourseOfferingInfo getCourseOffering() { |
31 | 0 | return courseOffering; |
32 | |
} |
33 | |
|
34 | |
public void setCourseOffering(CourseOfferingInfo courseOffering) { |
35 | 0 | this.courseOffering = courseOffering; |
36 | 0 | } |
37 | |
} |