1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.kuali.student.enrollment.class2.courseoffering.dto;
19
20 import org.kuali.student.enrollment.acal.dto.TermInfo;
21 import org.kuali.student.enrollment.courseoffering.dto.CourseOfferingInfo;
22 import org.kuali.student.r2.lum.course.dto.CourseInfo;
23
24 import java.io.Serializable;
25
26
27
28
29
30
31 public abstract class CourseOfferingWrapper implements Serializable{
32
33 private CourseInfo course;
34 private CourseOfferingInfo coInfo;
35 private TermInfo term;
36
37 public CourseOfferingWrapper(){
38 this.coInfo = new CourseOfferingInfo();
39 }
40
41 public CourseInfo getCourse() {
42 return course;
43 }
44
45 public void setCourse(CourseInfo course) {
46 this.course = course;
47 }
48
49 public CourseOfferingInfo getCoInfo() {
50 return coInfo;
51 }
52
53 public void setCoInfo(CourseOfferingInfo coInfo) {
54 this.coInfo = coInfo;
55 }
56
57 public TermInfo getTerm() {
58 return term;
59 }
60
61 public void setTerm(TermInfo term) {
62 this.term = term;
63 }
64
65 }