1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.enrollment.class2.courseoffering.dto;
17
18 import org.kuali.student.enrollment.courseoffering.dto.OfferingInstructorInfo;
19
20 import java.io.Serializable;
21
22
23
24
25
26
27 public class OfferingInstructorWrapper implements Serializable {
28 private OfferingInstructorInfo offeringInstructorInfo;
29 private String sEffort;
30 private String typeName;
31
32 public OfferingInstructorWrapper(){
33 offeringInstructorInfo = new OfferingInstructorInfo();
34 }
35
36 public OfferingInstructorInfo getOfferingInstructorInfo() {
37 return offeringInstructorInfo;
38 }
39
40 public void setOfferingInstructorInfo(OfferingInstructorInfo offeringInstructorInfo) {
41 this.offeringInstructorInfo = offeringInstructorInfo;
42 }
43
44 public OfferingInstructorWrapper(OfferingInstructorInfo offeringInstructorInfo){
45 super();
46 this.offeringInstructorInfo = offeringInstructorInfo;
47 }
48
49 public String getsEffort() {
50 return sEffort;
51 }
52
53 public void setsEffort(String sEffort) {
54 this.sEffort = sEffort;
55 }
56
57 public String getTypeName() {
58 return typeName;
59 }
60
61 public void setTypeName(String typeName) {
62 this.typeName = typeName;
63 }
64 }