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

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


            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));
            //operations.add(new PrintUnder23TransportsDeclarationOperation(RoleType.STUDENT, this));
            //operations.add(new PrintMeasurementTestDateOperation(RoleType.STUDENT, this));
            operations.add(new PrintAllDocumentsOperation(RoleType.STUDENT, this));
            break;
        }
        return operations;
    }
View Full Code Here


            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));
            //operations.add(new PrintUnder23TransportsDeclarationOperation(RoleType.STUDENT, this));
            //operations.add(new PrintMeasurementTestDateOperation(RoleType.STUDENT, this));
            operations.add(new PrintAllDocumentsOperation(RoleType.STUDENT, this));
            break;
        }
        return operations;
    }
View Full Code Here

        final User userView = getUserView(request);

        if (candidacyOperation == null) {
            // possible due to first-time candidacy summary generation link in manager portal
            candidacyOperation = new PrintAllDocumentsOperation(RoleType.STUDENT, getCandidacy(request));
        } else {
            ExecuteStateOperation.run(candidacyOperation, getLoggedPerson(request));
        }

        if (candidacyOperation.getType() == CandidacyOperationType.PRINT_SCHEDULE) {
View Full Code Here

TOP

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

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.