/** * Copyright © ${project.inceptionYear} Instituto Superior Técnico * * This file is part of Fenix IST. * * Fenix IST 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. * * Fenix IST 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 Fenix IST. If not, see <http://www.gnu.org/licenses/>. */ package pt.ist.fenix.domain.student.importation; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import org.fenixedu.academic.domain.EntryPhase; import org.fenixedu.academic.domain.ExecutionYear; import org.fenixedu.academic.domain.candidacy.Ingression; import org.fenixedu.academic.domain.exceptions.DomainException; import pt.utl.ist.fenix.tools.loaders.DataLoaderFromFile; /** * * @author naat * */ public abstract class DgesBaseProcess extends DgesBaseProcess_Base { protected static final String ALAMEDA_UNIVERSITY = "A"; protected static final String TAGUS_UNIVERSITY = "T"; static Map<String, Ingression> CONTINGENT_TO_INGRESSION_CONVERSION = new HashMap<String, Ingression>(); static { // Contingente Geral CONTINGENT_TO_INGRESSION_CONVERSION.put("1", Ingression.CNA01); // Contingente Açores CONTINGENT_TO_INGRESSION_CONVERSION.put("2", Ingression.CNA02); // Contingente Madeira CONTINGENT_TO_INGRESSION_CONVERSION.put("3", Ingression.CNA03); // Contingente Emigrantes CONTINGENT_TO_INGRESSION_CONVERSION.put("5", Ingression.CNA05); // Contingente Militar CONTINGENT_TO_INGRESSION_CONVERSION.put("6", Ingression.CNA06); // Contingente Deficientes CONTINGENT_TO_INGRESSION_CONVERSION.put("D", Ingression.CNA07); } protected DgesBaseProcess() { super(); } protected void init(final ExecutionYear executionYear, final EntryPhase entryPhase) { String[] args = new String[0]; if (executionYear == null) { throw new DomainException("error.DgesBaseProcess.execution.year.is.null", args); } String[] args1 = new String[0]; if (entryPhase == null) { throw new DomainException("error.DgesBaseProcess.entry.phase.is.null", args1); } setExecutionYear(executionYear); setEntryPhase(entryPhase); } protected List<DegreeCandidateDTO> parseDgesFile(byte[] contents, String university, EntryPhase entryPhase) { final List<DegreeCandidateDTO> result = new ArrayList<DegreeCandidateDTO>(); result.addAll(new DataLoaderFromFile<DegreeCandidateDTO>().load(DegreeCandidateDTO.class, contents)); setConstantFields(university, entryPhase, result); return result; } private void setConstantFields(String university, EntryPhase entryPhase, final Collection<DegreeCandidateDTO> result) { for (final DegreeCandidateDTO degreeCandidateDTO : result) { degreeCandidateDTO.setIstUniversity(university); degreeCandidateDTO.setEntryPhase(entryPhase); } } }