Examples of SecondCycleIndividualCandidacyExemption


Examples of org.fenixedu.academic.domain.accounting.events.candidacy.SecondCycleIndividualCandidacyExemption

            newProcess.setOriginalIndividualCandidacyProcess(process);

            SecondCycleIndividualCandidacyEvent event =
                    (SecondCycleIndividualCandidacyEvent) newProcess.getCandidacy().getEvent();

            new SecondCycleIndividualCandidacyExemption(userView.getPerson(), event,
                    CandidacyExemptionJustificationType.TRANSFERED_APPLICATION);

            Collection<IndividualCandidacyDocumentFile> documents = process.getCandidacy().getDocumentsSet();

            for (IndividualCandidacyDocumentFile individualCandidacyDocumentFile : documents) {
View Full Code Here

Examples of org.fenixedu.academic.domain.accounting.events.candidacy.SecondCycleIndividualCandidacyExemption

public class CreateSecondCycleIndividualCandidacyExemption {

    @Atomic
    public static void run(final Person responsible, final SecondCycleIndividualCandidacyExemptionBean bean) {
        check(AcademicPredicates.MANAGE_STUDENT_PAYMENTS);
        new SecondCycleIndividualCandidacyExemption(responsible, bean.getEvent(), bean.getJustificationType());
    }
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.