View Javadoc

1   /**
2    * Copyright 2012 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
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   * This class //TODO ...
24   *
25   * @author Kuali Student Team
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  }