Package org.fenixedu.academic.domain.candidacyProcess

Examples of org.fenixedu.academic.domain.candidacyProcess.CandidacyProcess


                return bean.getIndividualCandidacyProcess().getCandidacyProcess().getDegreeSet();
            }
        }
        if (source instanceof ChooseDegreeBean) {
            final ChooseDegreeBean bean = (ChooseDegreeBean) source;
            final CandidacyProcess candidacyProcess = bean.getCandidacyProcess();
            if (candidacyProcess instanceof DegreeCandidacyForGraduatedPersonProcess) {
                final DegreeCandidacyForGraduatedPersonProcess candidacyForGraduatedPersonProcess =
                        (DegreeCandidacyForGraduatedPersonProcess) candidacyProcess;
                return candidacyForGraduatedPersonProcess.getAvailableDegrees();
            }
View Full Code Here


    }

    private Collection<PaymentCode> findIndividualCandidaciesEventPaymentCodesFor(
            final Class<? extends CandidacyProcess> candidacyProcessClazz, final String paymentCodeValue,
            final ExecutionYear executionYear) {
        CandidacyProcess candidacyProcessByExecutionInterval =
                CandidacyProcess.getCandidacyProcessByExecutionInterval(candidacyProcessClazz, executionYear);

        final Collection<PaymentCode> result = new ArrayList<PaymentCode>();
        if (candidacyProcessByExecutionInterval == null) {
            return result;
        }

        Collection<IndividualCandidacyProcess> childProcesses = candidacyProcessByExecutionInterval.getChildProcessesSet();
        for (IndividualCandidacyProcess individualCandidacyProcess : childProcesses) {
            if (individualCandidacyProcess.getCandidacy().getEvent() == null) {
                continue;
            }
            if (individualCandidacyProcess.getCandidacy().getEvent().getAllPaymentCodes().isEmpty()) {
View Full Code Here

        ActionForward actionForwardError = verifySubmissionPreconditions(mapping);
        if (actionForwardError != null) {
            return actionForwardError;
        }

        CandidacyProcess candidacyProcess = getCurrentOpenParentProcess();

        String hash = request.getParameter("hash");
        DegreeOfficePublicCandidacyHashCode candidacyHashCode =
                (DegreeOfficePublicCandidacyHashCode) PublicCandidacyHashCode.getPublicCandidacyCodeByHash(hash);
View Full Code Here

        ActionForward actionForwardError = verifySubmissionPreconditions(mapping);
        if (actionForwardError != null) {
            return actionForwardError;
        }

        CandidacyProcess candidacyProcess = getCurrentOpenParentProcess();

        String hash = request.getParameter("hash");
        DegreeOfficePublicCandidacyHashCode candidacyHashCode =
                (DegreeOfficePublicCandidacyHashCode) PublicCandidacyHashCode.getPublicCandidacyCodeByHash(hash);
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.candidacyProcess.CandidacyProcess

Copyright © 2018 www.massapicom. 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.