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

Examples of org.fenixedu.academic.domain.candidacy.workflow.FillPersonalDataOperation


    @Override
    public Set<Operation> getOperations(CandidacySituation candidacySituation) {
        final Set<Operation> operations = new HashSet<Operation>();
        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:
View Full Code Here


    @Override
    public Set<Operation> getOperations(CandidacySituation candidacySituation) {
        final Set<Operation> operations = new HashSet<Operation>();
        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:
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.candidacy.workflow.FillPersonalDataOperation

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.