/** * Copyright © 2011 Instituto Superior Técnico * * This file is part of FenixEdu Teacher Credits. * * FenixEdu Teacher Credits is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * FenixEdu Teacher Credits is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with FenixEdu Teacher Credits. If not, see <http://www.gnu.org/licenses/>. */ /** * Nov 24, 2005 */ package pt.ist.fenixedu.teacher.dto.teacher.workTime; import java.util.Date; import org.fenixedu.academic.dto.InfoObject; import org.fenixedu.academic.util.WeekDay; /** * @author Ricardo Rodrigues * */ public class InstitutionWorkTimeDTO extends InfoObject { private WeekDay weekDay; private Date startTime; private Date endTime; public Date getEndTime() { return endTime; } public void setEndTime(Date endTime) { this.endTime = endTime; } public Date getStartTime() { return startTime; } public void setStartTime(Date startTime) { this.startTime = startTime; } public WeekDay getWeekDay() { return weekDay; } public void setWeekDay(WeekDay weekDay) { this.weekDay = weekDay; } }