Package org.fenixedu.academic.domain.candidacy.workflow

Examples of org.fenixedu.academic.domain.candidacy.workflow.RegistrationOperation$RegistrationCreatedByCandidacy


        switch (candidacySituation.getCandidacySituationType()) {
        case STAND_BY:
            operations.add(new FillPersonalDataOperation(Collections.singleton(RoleType.CANDIDATE), this));
            break;
        case ADMITTED:
            operations.add(new RegistrationOperation(Collections.singleton(RoleType.CANDIDATE), this));
            break;
        case REGISTERED:
            operations.add(new PrintScheduleOperation(Collections.singleton(RoleType.STUDENT), this));
            operations.add(new PrintRegistrationDeclarationOperation(Collections.singleton(RoleType.STUDENT), this));
            operations.add(new PrintSystemAccessDataOperation(Collections.singleton(RoleType.STUDENT), this));
View Full Code Here


        switch (candidacySituation.getCandidacySituationType()) {
        case STAND_BY:
            operations.add(new FillPersonalDataOperation(Collections.singleton(RoleType.CANDIDATE), this));
            break;
        case ADMITTED:
            operations.add(new RegistrationOperation(Collections.singleton(RoleType.CANDIDATE), this));
            break;
        case REGISTERED:
            operations.add(new PrintScheduleOperation(Collections.singleton(RoleType.STUDENT), this));
            operations.add(new PrintRegistrationDeclarationOperation(Collections.singleton(RoleType.STUDENT), this));
            operations.add(new PrintSystemAccessDataOperation(Collections.singleton(RoleType.STUDENT), this));
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.candidacy.workflow.RegistrationOperation$RegistrationCreatedByCandidacy

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.