/** * 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.faces.bean.bolonhaManager.curricularPlans; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javax.faces.model.SelectItem; import org.fenixedu.academic.domain.degreeStructure.BranchType; import org.fenixedu.academic.domain.exceptions.DomainException; import org.fenixedu.academic.predicate.IllegalDataAccessException; import org.fenixedu.academic.service.services.bolonhaManager.CreateBranchCourseGroup; import org.fenixedu.academic.service.services.exceptions.FenixServiceException; import org.fenixedu.academic.util.Bundle; import org.fenixedu.bennu.core.i18n.BundleUtil; import org.fenixedu.commons.i18n.I18N; public class BranchCourseGroupManagementBackingBean extends CourseGroupManagementBackingBean { private String branchTypeName; private List<SelectItem> branchTypes = null; public String getBranchTypeName() { return (branchTypeName != null) ? branchTypeName : BranchType.MAJOR.getName(); } public void setBranchTypeName(String branchTypeName) { this.branchTypeName = branchTypeName; } public BranchType getBranchType() { return BranchType.valueOf(getBranchTypeName()); } public List<SelectItem> getBranchTypes() { return (branchTypes == null) ? (branchTypes = readBranchTypes()) : branchTypes; } private List<SelectItem> readBranchTypes() { final List<SelectItem> result = new ArrayList<SelectItem>(); final List<BranchType> entries = new ArrayList<BranchType>(Arrays.asList(BranchType.values())); for (BranchType entry : entries) { result.add(new SelectItem(entry.name(), entry.getDescription(I18N.getLocale()))); } return result; } public String createBranchCourseGroup() { try { CreateBranchCourseGroup.run(getDegreeCurricularPlanID(), getParentCourseGroupID(), getName(), getNameEn(), getBranchType(), getBeginExecutionPeriodID(), getFinalEndExecutionPeriodID()); addInfoMessage(BundleUtil.getString(Bundle.BOLONHA, "branchCourseGroupCreated")); return "editCurricularPlanStructure"; } catch (IllegalDataAccessException e) { this.addErrorMessage(BundleUtil.getString(Bundle.BOLONHA, "error.notAuthorized")); return "editCurricularPlanStructure"; } catch (final FenixServiceException e) { addErrorMessage(BundleUtil.getString(Bundle.BOLONHA, e.getMessage())); } catch (final DomainException e) { addErrorMessage(BundleUtil.getString(Bundle.DOMAIN_EXCEPTION, e.getMessage())); } return ""; } }