View Javadoc
1   /**
2    * Copyright 2005-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.krad.labs.registration.form;
17  
18  import java.io.Serializable;
19  
20  /**
21   * Class for KS Admin Registration Lab prototype
22   *
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   */
25  public class LabsAdminRegistrationActivity implements Serializable {
26      private static final long serialVersionUID = -58207877197440410L;
27  
28      private String type;
29      private String dateTime;
30      private String instructor;
31      private String room;
32  
33      public LabsAdminRegistrationActivity(String type, String dateTime, String instructor, String room) {
34          this.type = type;
35          this.dateTime = dateTime;
36          this.instructor = instructor;
37          this.room = room;
38      }
39  
40      public String getType() {
41          return type;
42      }
43  
44      public void setType(String type) {
45          this.type = type;
46      }
47  
48      public String getDateTime() {
49          return dateTime;
50      }
51  
52      public void setDateTime(String dateTime) {
53          this.dateTime = dateTime;
54      }
55  
56      public String getInstructor() {
57          return instructor;
58      }
59  
60      public void setInstructor(String instructor) {
61          this.instructor = instructor;
62      }
63  
64      public String getRoom() {
65          return room;
66      }
67  
68      public void setRoom(String room) {
69          this.room = room;
70      }
71  }