Package org.fenixedu.academic.domain.period

Examples of org.fenixedu.academic.domain.period.SecondCycleCandidacyPeriod


    private SecondCycleCandidacyProcess(final ExecutionYear executionYear, final DateTime start, final DateTime end) {
        this();
        checkParameters(executionYear, start, end);
        setState(CandidacyProcessState.STAND_BY);
        new SecondCycleCandidacyPeriod(this, executionYear, start, end);
    }
View Full Code Here


        List<SecondCycleCandidacyProcess> result = new ArrayList<SecondCycleCandidacyProcess>();

        List<CandidacyPeriod> readAllByType = CandidacyPeriod.readAllByType(SecondCycleCandidacyPeriod.class);

        for (CandidacyPeriod candidacyPeriod : readAllByType) {
            SecondCycleCandidacyPeriod secondCycleCandidacyPeriod = (SecondCycleCandidacyPeriod) candidacyPeriod;
            if (getCandidacyPeriod().getStart().isBefore(candidacyPeriod.getStart())) {
                result.add(secondCycleCandidacyPeriod.getSecondCycleCandidacyProcess());
            }
        }

        return result;
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.period.SecondCycleCandidacyPeriod

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.