1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.labs.registration.form;
17
18 import java.io.Serializable;
19
20
21
22
23
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 }