1 /**
2 * Copyright 2011-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 package org.kuali.mobility.academics.entity;
16
17 import java.util.List;
18
19 /**
20 *
21 * @author Joe Swanson <joseswan@umich.edu>
22 */
23 public interface SectionMeeting {
24
25 /**
26 * @return the days
27 */
28 String getDays();
29
30 /**
31 * @return the number
32 */
33 String getNumber();
34
35 /**
36 * @return the times
37 */
38 String getTimes();
39
40 /**
41 * @return the location
42 */
43 String getLocation();
44
45 /**
46 * @return the instructor
47 */
48 public List<String> getInstructors();
49
50 /**
51 * @param days the days to set
52 */
53 void setDays(String days);
54
55 /**
56 * @param number the number to set
57 */
58 void setNumber(String number);
59
60 /**
61 * @param times the times to set
62 */
63 void setTimes(String times);
64
65 /**
66 * @param location the location to set
67 */
68 void setLocation(String location);
69
70 /**
71 * @param instructor the instructor to set
72 */
73 void setInstructors(List<String> instructor);
74
75 String getStartDate();
76 void setStartDate(String startDate);
77
78 String getEndDate();
79 void setEndDate(String startDate);
80
81 String getTopic();
82 void setTopic(String topic);
83
84
85 }