org.sakaiproject.component.section.sakai.MeetingImpl Maven / Gradle / Ivy
/**
* Copyright (c) 2003-2017 The Apereo Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://opensource.org/licenses/ecl2
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sakaiproject.component.section.sakai;
import java.io.Serializable;
import java.sql.Time;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.sakaiproject.section.api.coursemanagement.Meeting;
public class MeetingImpl implements Meeting, Serializable {
private static final long serialVersionUID = 1L;
private String location;
private boolean monday;
private boolean tuesday;
private boolean wednesday;
private boolean thursday;
private boolean friday;
private boolean saturday;
private boolean sunday;
private Time startTime;
private Time endTime;
public MeetingImpl() {
}
public MeetingImpl(String location, Time startTime, Time endTime, boolean monday, boolean tuesday,
boolean wednesday, boolean thursday, boolean friday, boolean saturday, boolean sunday) {
this.location = location;
this.startTime = startTime;
this.endTime = endTime;
this.monday = monday;
this.tuesday = tuesday;
this.wednesday = wednesday;
this.thursday = thursday;
this.friday = friday;
this.saturday = saturday;
this.sunday = sunday;
}
public boolean isEmpty() {
return !monday && !tuesday && !wednesday && !thursday && !friday && !saturday && !sunday &&
startTime == null && endTime == null && StringUtils.trimToNull(location) == null;
}
public Time getEndTime() {
return endTime;
}
public void setEndTime(Time endTime) {
this.endTime = endTime;
}
public boolean isFriday() {
return friday;
}
public void setFriday(boolean friday) {
this.friday = friday;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public boolean isMonday() {
return monday;
}
public void setMonday(boolean monday) {
this.monday = monday;
}
public boolean isSaturday() {
return saturday;
}
public void setSaturday(boolean saturday) {
this.saturday = saturday;
}
public Time getStartTime() {
return startTime;
}
public void setStartTime(Time startTime) {
this.startTime = startTime;
}
public boolean isSunday() {
return sunday;
}
public void setSunday(boolean sunday) {
this.sunday = sunday;
}
public boolean isThursday() {
return thursday;
}
public void setThursday(boolean thursday) {
this.thursday = thursday;
}
public boolean isTuesday() {
return tuesday;
}
public void setTuesday(boolean tuesday) {
this.tuesday = tuesday;
}
public boolean isWednesday() {
return wednesday;
}
public void setWednesday(boolean wednesday) {
this.wednesday = wednesday;
}
public String toString() {
return new ToStringBuilder(this).append(location).append(startTime).append(endTime)
.append(monday).append(tuesday).append(wednesday).append(thursday)
.append(friday).append(saturday).append(sunday).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy