View Javadoc

1   /**
2    * Copyright 2011-2012 The Kuali Foundation Licensed under the Educational
3    * Community License, Version 2.0 (the "License"); you may not use this file
4    * except in compliance with the License. You may obtain a copy of the License
5    * at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12   * License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  package org.kuali.mobility.academics.entity;
16  
17  import java.io.Serializable;
18  import java.util.List;
19  import javax.xml.bind.annotation.XmlRootElement;
20  
21  /**
22   *
23   * @author Joe Swanson <joseswan@umich.edu>
24   */
25  @XmlRootElement(name = "meeting")
26  public class SectionMeetingImpl implements SectionMeeting, Serializable {
27  
28      private String number;
29      private String days;
30      private String times;
31      private String location;
32      private List<String> instructors;
33      private String startDate;
34      private String endDate;
35      private String topic;
36  
37      /**
38       * @return the number
39       */
40      @Override
41      public String getNumber() {
42          return number;
43      }
44  
45      /**
46       * @param number the number to set
47       */
48      @Override
49      public void setNumber(String number) {
50          this.number = number;
51      }
52  
53      /**
54       * @return the days
55       */
56      @Override
57      public String getDays() {
58          return days;
59      }
60  
61      /**
62       * @param days the days to set
63       */
64      @Override
65      public void setDays(String days) {
66          this.days = days;
67      }
68  
69      /**
70       * @return the times
71       */
72      @Override
73      public String getTimes() {
74          return times;
75      }
76  
77      /**
78       * @param times the times to set
79       */
80      @Override
81      public void setTimes(String times) {
82          this.times = times;
83      }
84  
85      @Override
86      public String getLocation() {
87          return location;
88      }
89  
90      /**
91       * @param location the location to set
92       */
93      @Override
94      public void setLocation(String location) {
95          this.location = location;
96      }
97  
98      @Override
99      public List<String> getInstructors() {
100         return instructors;
101     }
102 
103     /**
104      * @param instructor the instructor set
105      */
106     @Override
107     public void setInstructors(List<String> instructors) {
108         this.instructors = instructors;
109     }
110 
111     /**
112      * @return the startDate
113      */
114     @Override
115     public String getStartDate() {
116         return startDate;
117     }
118 
119     /**
120      * @param startDate the startDate to set
121      */
122     @Override
123     public void setStartDate(String startDate) {
124         this.startDate = startDate;
125     }
126 
127     /**
128      * @return the endDate
129      */
130     @Override
131     public String getEndDate() {
132         return endDate;
133     }
134 
135     /**
136      * @param endDate the endDate to set
137      */
138     @Override
139     public void setEndDate(String endDate) {
140         this.endDate = endDate;
141     }
142 
143     /**
144      * @return the topic
145      */
146     @Override
147     public String getTopic() {
148         return topic;
149     }
150 
151     /**
152      * @param topic the topic to set
153      */
154     @Override
155     public void setTopic(String topic) {
156         this.topic = topic;
157     }
158 }