Examples of DFACandidacy


Examples of org.fenixedu.academic.domain.candidacy.DFACandidacy

    }

    public DFACandidacy getDFACandidacyByExecutionDegree(final ExecutionDegree executionDegree) {
        for (final Candidacy candidacy : this.getCandidaciesSet()) {
            if (candidacy instanceof DFACandidacy) {
                final DFACandidacy dfaCandidacy = (DFACandidacy) candidacy;
                if (dfaCandidacy.getExecutionDegree().equals(executionDegree)) {
                    return dfaCandidacy;
                }
            }
        }
        return null;
View Full Code Here

Examples of org.fenixedu.academic.domain.candidacy.DFACandidacy

        case BOLONHA_ADVANCED_SPECIALIZATION_DIPLOMA:
            // TODO: remove this after PHD Program candidacy is completed and
            // data migrated
            return new PHDProgramCandidacy(person, executionDegree);
        case BOLONHA_ADVANCED_FORMATION_DIPLOMA:
            return new DFACandidacy(person, executionDegree, startDate);

        default:
            throw new DomainException("error.candidacyFactory.invalid.degree.type");
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.