001/**
002 * Copyright 2005-2018 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.labs.registration.form;
017
018import java.io.Serializable;
019
020/**
021 * Class for KS Admin Registration Lab prototype
022 *
023 * @author Kuali Rice Team (rice.collab@kuali.org)
024 */
025public class LabsAdminRegistrationActivity implements Serializable {
026    private static final long serialVersionUID = -58207877197440410L;
027
028    private String type;
029    private String dateTime;
030    private String instructor;
031    private String room;
032
033    public LabsAdminRegistrationActivity(String type, String dateTime, String instructor, String room) {
034        this.type = type;
035        this.dateTime = dateTime;
036        this.instructor = instructor;
037        this.room = room;
038    }
039
040    public String getType() {
041        return type;
042    }
043
044    public void setType(String type) {
045        this.type = type;
046    }
047
048    public String getDateTime() {
049        return dateTime;
050    }
051
052    public void setDateTime(String dateTime) {
053        this.dateTime = dateTime;
054    }
055
056    public String getInstructor() {
057        return instructor;
058    }
059
060    public void setInstructor(String instructor) {
061        this.instructor = instructor;
062    }
063
064    public String getRoom() {
065        return room;
066    }
067
068    public void setRoom(String room) {
069        this.room = room;
070    }
071}