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   * Created by vgadiyak on 9/14/12
16   */
17  package org.kuali.student.enrollment.class2.scheduleofclasses.dto;
18  
19  import org.apache.commons.lang.StringEscapeUtils;
20  import org.kuali.student.enrollment.class2.courseoffering.dto.ActivityOfferingClusterWrapper;
21  import org.kuali.student.enrollment.class2.courseoffering.dto.ActivityOfferingWrapper;
22  import org.kuali.student.enrollment.class2.courseoffering.dto.CourseOfferingListSectionWrapper;
23  
24  import java.util.ArrayList;
25  import java.util.List;
26  
27  /* TODO : This class needs refactoring; should inherit from CourseOfferingWrapper; see https://jira.kuali.org/browse/KSENROLL-5931
28   */
29  
30  /**
31   * This class defines a wrapper for Course Offering Display data
32   *
33   * @author Kuali Student Team
34   */
35  public class CourseOfferingDisplayWrapper extends CourseOfferingListSectionWrapper {
36  
37      private String information;
38      private String requisites;
39      private List<ActivityOfferingClusterWrapper> aoClusterWrapperList;
40      private List<ActivityOfferingWrapper> activityWrapperList;
41  
42      public CourseOfferingDisplayWrapper(){
43          aoClusterWrapperList = new ArrayList<ActivityOfferingClusterWrapper>();
44          activityWrapperList = new ArrayList<ActivityOfferingWrapper>();
45      }
46  
47      public String getInformation() {
48          return information;
49      }
50  
51      public void setInformation(String information) {
52          this.information = information;
53      }
54  
55      public String getRequisites() {
56          return requisites;
57      }
58  
59      public void setRequisites(String requisites) {
60          this.requisites = requisites;
61      }
62  
63      public List<ActivityOfferingWrapper> getActivityWrapperList() {
64          return activityWrapperList;
65      }
66  
67      public void setActivityWrapperList(List<ActivityOfferingWrapper> activityWrapperList) {
68          this.activityWrapperList = activityWrapperList;
69      }
70  
71      public List<ActivityOfferingClusterWrapper> getClusterResultList() {
72          return aoClusterWrapperList;
73      }
74  
75      public void setClusterResultList(List<ActivityOfferingClusterWrapper> clusterResultList) {
76          this.aoClusterWrapperList = clusterResultList;
77      }
78  
79  }