/** * 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.ui.struts.action.phd; import java.io.Serializable; import java.util.Collections; import java.util.List; import org.fenixedu.academic.domain.StudentCurricularPlan; import org.fenixedu.academic.domain.student.Registration; import org.fenixedu.academic.ui.renderers.student.curriculum.StudentCurricularPlanRenderer.EnrolmentStateFilterType; import org.fenixedu.academic.ui.renderers.student.curriculum.StudentCurricularPlanRenderer.OrganizationType; import org.fenixedu.academic.ui.renderers.student.curriculum.StudentCurricularPlanRenderer.ViewType; import pt.ist.fenixWebFramework.rendererExtensions.converters.DomainObjectKeyConverter; import pt.ist.fenixWebFramework.renderers.DataProvider; import pt.ist.fenixWebFramework.renderers.components.converters.Converter; public class PhdCurriculumFilterOptions implements Serializable { static private final long serialVersionUID = 1L; private Registration registration; private StudentCurricularPlan selectedStudentCurricularPlan; private ViewType viewType; private EnrolmentStateFilterType enrolmentStateType; private OrganizationType organizationType; private Boolean detailed; public PhdCurriculumFilterOptions() { setViewType(ViewType.ALL); setEnrolmentStateType(EnrolmentStateFilterType.APPROVED_OR_ENROLED); setOrganizationType(OrganizationType.GROUPS); setDetailed(Boolean.FALSE); } public PhdCurriculumFilterOptions(final Registration registration) { this(); setRegistration(registration); setSelectedStudentCurricularPlan(registration.getLastStudentCurricularPlan()); } private Registration getRegistration() { return registration; } private void setRegistration(Registration registration) { this.registration = registration; } public StudentCurricularPlan getSelectedStudentCurricularPlan() { return selectedStudentCurricularPlan; } public void setSelectedStudentCurricularPlan(StudentCurricularPlan selectedStudentCurricularPlan) { this.selectedStudentCurricularPlan = selectedStudentCurricularPlan; } public List<StudentCurricularPlan> getStudentCurricularPlans() { if (getSelectedStudentCurricularPlan() == null) { return getRegistration().getSortedStudentCurricularPlans(); } return Collections.singletonList(getSelectedStudentCurricularPlan()); } public ViewType getViewType() { return viewType; } public void setViewType(ViewType viewType) { this.viewType = viewType; } public EnrolmentStateFilterType getEnrolmentStateType() { return enrolmentStateType; } public void setEnrolmentStateType(EnrolmentStateFilterType enrolmentStateType) { this.enrolmentStateType = enrolmentStateType; } public OrganizationType getOrganizationType() { return organizationType; } public void setOrganizationType(OrganizationType organizationType) { this.organizationType = organizationType; } public Boolean getDetailed() { return detailed; } public void setDetailed(Boolean detailed) { this.detailed = detailed; } static public class PhdStudentCurricularPlansFilterProvider implements DataProvider { @Override public Converter getConverter() { return new DomainObjectKeyConverter(); } @Override public Object provide(Object source, Object currentValue) { final PhdCurriculumFilterOptions filter = (PhdCurriculumFilterOptions) source; return filter.getRegistration().getSortedStudentCurricularPlans(); } } }