Examples of PhdAcademicServiceRequest


Examples of org.fenixedu.academic.domain.phd.serviceRequests.PhdAcademicServiceRequest

    }

    /* DOWNLOAD DOCUMENT */
    public ActionForward downloadLastGeneratedDocument(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) throws IOException {
        PhdAcademicServiceRequest academicServiceRequest = getPhdAcademicServiceRequest(request);

        writeFile(response, academicServiceRequest.getLastGeneratedDocument().getFilename(), academicServiceRequest
                .getLastGeneratedDocument().getContentType(), academicServiceRequest.getLastGeneratedDocument().getContents());

        return null;
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.serviceRequests.PhdAcademicServiceRequest

        return null;
    }

    protected ActionForward prepareProcessNewState(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response, AcademicServiceRequestSituationType situationType) {
        PhdAcademicServiceRequest academicServiceRequest = getPhdAcademicServiceRequest(request);
        PhdAcademicServiceRequestBean academicServiceRequestBean = new PhdAcademicServiceRequestBean(academicServiceRequest);

        academicServiceRequestBean.setSituationType(situationType);
        request.setAttribute("phdAcademicServiceRequestBean", academicServiceRequestBean);
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.serviceRequests.PhdAcademicServiceRequest

    }

    private void fillDescription(final LabelFormatter labelFormatter) {
        labelFormatter.appendLabel(" (");
        final PhdAcademicServiceRequest request = (PhdAcademicServiceRequest) getAcademicServiceRequest();
        labelFormatter.appendLabel(request.getPhdIndividualProgramProcess().getPhdProgram().getName().getPreferedContent());
        labelFormatter.appendLabel(")");
    }
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.