/**
* 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.serviceRequests.documentRequests;
import org.fenixedu.academic.domain.accounting.EventType;
import org.fenixedu.academic.domain.exceptions.DomainException;
import org.fenixedu.academic.dto.serviceRequests.AcademicServiceRequestBean;
import org.fenixedu.academic.dto.serviceRequests.DocumentRequestCreateBean;
public class ExtraCurricularCertificateRequest extends ExtraCurricularCertificateRequest_Base {
public ExtraCurricularCertificateRequest() {
super();
}
public ExtraCurricularCertificateRequest(final DocumentRequestCreateBean bean) {
this();
super.init(bean);
checkParameters(bean);
super.getEnrolmentsSet().addAll(bean.getEnrolments());
}
@Override
protected void checkParameters(final DocumentRequestCreateBean bean) {
if (bean.getEnrolments() == null || bean.getEnrolments().isEmpty()) {
throw new DomainException("error.ExtraCurricularCertificateRequest.no.enrolments");
}
}
@Override
public Integer getNumberOfUnits() {
return super.getEnrolmentsSet().size();
}
@Override
public DocumentRequestType getDocumentRequestType() {
return DocumentRequestType.EXTRA_CURRICULAR_CERTIFICATE;
}
@Override
public String getDocumentTemplateKey() {
return getClass().getName();
}
@Override
public EventType getEventType() {
return getRegistration().getRegistrationProtocol().isExempted() ? null : EventType.EXTRA_CURRICULAR_APPROVEMENT_CERTIFICATE_REQUEST;
}
@Override
public boolean isAvailableForTransitedRegistrations() {
return true;
}
@Override
protected void internalChangeState(AcademicServiceRequestBean academicServiceRequestBean) {
super.internalChangeState(academicServiceRequestBean);
if (academicServiceRequestBean.isToCancelOrReject()) {
for (; !getEnrolmentsSet().isEmpty();) {
removeEnrolments(getEnrolmentsSet().iterator().next());
}
}
}
}