/** * Copyright © 2002 Instituto Superior Técnico * * This file is part of FenixEdu Academic. * * FenixEdu Academic 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 Academic 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 Academic. If not, see <http://www.gnu.org/licenses/>. */ package org.fenixedu.academic.domain.student; import java.util.Optional; import org.fenixedu.academic.domain.ExecutionSemester; import org.fenixedu.academic.domain.exceptions.DomainException; import org.fenixedu.academic.util.Bundle; import org.joda.time.LocalDate; public class SeniorStatute extends SeniorStatute_Base { private SeniorStatute() { super(); } public SeniorStatute(Student student, Registration registration, StatuteType statuteType, ExecutionSemester beginExecutionPeriod, ExecutionSemester endExecutionPeriod) { this(student, registration, statuteType, beginExecutionPeriod, endExecutionPeriod, ""); } public SeniorStatute(Student student, Registration registration, StatuteType statuteType, ExecutionSemester beginExecutionPeriod, ExecutionSemester endExecutionPeriod, String comment) { this(student, registration, statuteType, beginExecutionPeriod, endExecutionPeriod, beginExecutionPeriod .getBeginLocalDate(), endExecutionPeriod.getEndLocalDate()); } public SeniorStatute(Student student, Registration registration, StatuteType statuteType, ExecutionSemester beginExecutionPeriod, ExecutionSemester endExecutionPeriod, LocalDate beginDate, LocalDate endDate) { this(student, registration, statuteType, beginExecutionPeriod, endExecutionPeriod, beginDate, endDate, ""); } public SeniorStatute(Student student, Registration registration, StatuteType statuteType, ExecutionSemester beginExecutionPeriod, ExecutionSemester endExecutionPeriod, LocalDate beginDate, LocalDate endDate, String comment) { this(); setType(statuteType); edit(student, registration, beginExecutionPeriod, endExecutionPeriod, beginDate, endDate, comment); } public void edit(Student student, Registration registration, ExecutionSemester beginExecutionPeriod, ExecutionSemester endExecutionPeriod, LocalDate beginDate, LocalDate endDate, String comment) { setBeginDate(beginDate); setEndDate(endDate); setBeginExecutionPeriod(beginExecutionPeriod); setEndExecutionPeriod(endExecutionPeriod); setComment(comment); for (StudentStatute statute : student.getStudentStatutesSet()) { if (!statute.overlapsWith(this)) { continue; } if (!statute.hasSeniorStatuteForRegistration(getRegistration())) { continue; } throw new DomainException(Optional.of(Bundle.ACADEMIC), "error.studentStatute.alreadyExistsOneOverlapingStatute"); } setStudent(student); if (registration == null) { throw new DomainException("error.studentStatute.mustDefineValidRegistrationMatchingSeniorStatute"); } setRegistration(registration); checkRules(); } @Override public void delete() { checkRulesToDelete(); setBeginExecutionPeriod(null); setEndExecutionPeriod(null); setStudent(null); setRegistration(null); setType(null); setRootDomainObject(null); super.deleteDomainObject(); } @Override public boolean hasSeniorStatuteForRegistration(Registration registration) { return (this.getRegistration() == registration); } }