/**
* 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.phd.thesis;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.fenixedu.academic.domain.phd.PhdIndividualProgramProcess;
import org.fenixedu.academic.domain.phd.PhdProgramDocumentUploadBean;
import org.fenixedu.academic.util.MultiLanguageString;
import org.joda.time.DateTime;
import org.joda.time.LocalDate;
public class PhdThesisProcessBean implements Serializable {
static private final long serialVersionUID = 1L;
private PhdIndividualProgramProcess process;
private PhdThesisProcess thesisProcess;
private boolean toNotify = true;
private String remarks;
private Boolean finalThesis;
private LocalDate whenJuryValidated;
private LocalDate whenJuryDesignated;
private LocalDate whenJuryRequested;
private LocalDate whenThesisDiscussionRequired;
private List<PhdProgramDocumentUploadBean> documents;
private ThesisJuryElement juryElement;
private DateTime scheduledDate;
private String scheduledPlace;
private String mailSubject, mailBody;
private LocalDate whenFinalThesisRatified;
private PhdThesisFinalGrade finalGrade;
private LocalDate conclusionDate;
private Boolean generateAlert;
private PhdThesisProcessStateType processState;
private PhdJuryElementsRatificationEntity phdJuryElementsRatificationEntity;
private String ratificationEntityCustomMessage;
private LocalDate stateDate;
private MultiLanguageString presidentTitle;
public PhdThesisProcessBean() {
this.documents = new ArrayList<PhdProgramDocumentUploadBean>();
}
public PhdThesisProcessBean(PhdIndividualProgramProcess process) {
this();
setGenerateAlert(process.getPhdConfigurationIndividualProgramProcess().getGenerateAlert());
this.process = process;
this.thesisProcess = process.getThesisProcess();
if (this.thesisProcess != null) {
this.whenJuryValidated = this.thesisProcess.getWhenJuryValidated();
this.whenJuryDesignated = this.thesisProcess.getWhenJuryDesignated();
this.whenJuryRequested = this.thesisProcess.getWhenJuryRequired();
this.whenThesisDiscussionRequired = this.thesisProcess.getWhenThesisDiscussionRequired();
this.whenFinalThesisRatified = this.thesisProcess.getWhenFinalThesisRatified();
this.phdJuryElementsRatificationEntity = this.thesisProcess.getPhdJuryElementsRatificationEntity();
this.conclusionDate = this.thesisProcess.getConclusionDate();
this.finalGrade = this.thesisProcess.getFinalGrade();
this.phdJuryElementsRatificationEntity = this.thesisProcess.getPhdJuryElementsRatificationEntity();
this.ratificationEntityCustomMessage = this.thesisProcess.getRatificationEntityCustomMessage();
setPresidentTitle(this.thesisProcess.getPresidentTitle());
}
}
public PhdIndividualProgramProcess getProcess() {
return process;
}
public void setProcess(PhdIndividualProgramProcess process) {
this.process = process;
}
public PhdThesisProcess getThesisProcess() {
return thesisProcess;
}
public void setThesisProcess(PhdThesisProcess thesisProcess) {
this.thesisProcess = thesisProcess;
}
public boolean isToNotify() {
return toNotify;
}
public void setToNotify(boolean toNotify) {
this.toNotify = toNotify;
}
public String getRemarks() {
return remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
public List<PhdProgramDocumentUploadBean> getDocuments() {
return documents;
}
public void addDocument(PhdProgramDocumentUploadBean document) {
this.documents.add(document);
}
public void setDocuments(List<PhdProgramDocumentUploadBean> documents) {
this.documents = documents;
}
public Boolean getFinalThesis() {
return finalThesis;
}
public void setFinalThesis(Boolean finalThesis) {
this.finalThesis = finalThesis;
}
public LocalDate getWhenJuryValidated() {
return whenJuryValidated;
}
public void setWhenJuryValidated(LocalDate whenJuryValidated) {
this.whenJuryValidated = whenJuryValidated;
}
public LocalDate getWhenJuryDesignated() {
return whenJuryDesignated;
}
public void setWhenJuryDesignated(LocalDate whenJuryDesignated) {
this.whenJuryDesignated = whenJuryDesignated;
}
public ThesisJuryElement getJuryElement() {
return juryElement;
}
public void setJuryElement(ThesisJuryElement juryElement) {
this.juryElement = juryElement;
}
public DateTime getScheduledDate() {
return scheduledDate;
}
public void setScheduledDate(DateTime scheduledDate) {
this.scheduledDate = scheduledDate;
}
public String getScheduledPlace() {
return scheduledPlace;
}
public void setScheduledPlace(String scheduledPlace) {
this.scheduledPlace = scheduledPlace;
}
public String getMailSubject() {
return mailSubject;
}
public void setMailSubject(String mailSubject) {
this.mailSubject = mailSubject;
}
public String getMailBody() {
return mailBody;
}
public void setMailBody(String mailBody) {
this.mailBody = mailBody;
}
public LocalDate getWhenFinalThesisRatified() {
return whenFinalThesisRatified;
}
public void setWhenFinalThesisRatified(LocalDate whenFinalThesisRatified) {
this.whenFinalThesisRatified = whenFinalThesisRatified;
}
public PhdThesisFinalGrade getFinalGrade() {
return finalGrade;
}
public void setFinalGrade(PhdThesisFinalGrade finalGrade) {
this.finalGrade = finalGrade;
}
public LocalDate getConclusionDate() {
return conclusionDate;
}
public void setConclusionDate(LocalDate conclusionDate) {
this.conclusionDate = conclusionDate;
}
public Boolean getGenerateAlert() {
return generateAlert;
}
public void setGenerateAlert(Boolean generateAlert) {
this.generateAlert = generateAlert;
}
public PhdThesisProcessStateType getProcessState() {
return processState;
}
public void setProcessState(PhdThesisProcessStateType processState) {
this.processState = processState;
}
public LocalDate getWhenThesisDiscussionRequired() {
return whenThesisDiscussionRequired;
}
public void setWhenThesisDiscussionRequired(LocalDate whenThesisDiscussionRequired) {
this.whenThesisDiscussionRequired = whenThesisDiscussionRequired;
}
public LocalDate getWhenJuryRequested() {
return whenJuryRequested;
}
public void setWhenJuryRequested(LocalDate whenJuryRequested) {
this.whenJuryRequested = whenJuryRequested;
}
public PhdJuryElementsRatificationEntity getPhdJuryElementsRatificationEntity() {
return phdJuryElementsRatificationEntity;
}
public void setPhdJuryElementsRatificationEntity(PhdJuryElementsRatificationEntity phdJuryElementsRatificationEntity) {
this.phdJuryElementsRatificationEntity = phdJuryElementsRatificationEntity;
}
public String getRatificationEntityCustomMessage() {
return ratificationEntityCustomMessage;
}
public void setRatificationEntityCustomMessage(String ratificationEntityCustomMessage) {
this.ratificationEntityCustomMessage = ratificationEntityCustomMessage;
}
public LocalDate getStateDate() {
return stateDate;
}
public void setStateDate(LocalDate stateDate) {
this.stateDate = stateDate;
}
public MultiLanguageString getPresidentTitle() {
return presidentTitle;
}
public void setPresidentTitle(MultiLanguageString presidentTitle) {
this.presidentTitle = presidentTitle;
}
}