Examples of RatifyCandidacyBean


Examples of org.fenixedu.academic.domain.phd.candidacy.RatifyCandidacyBean

    }

    public ActionForward prepareRatifyCandidacy(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) {

        request.setAttribute("ratifyCandidacyBean", new RatifyCandidacyBean(getProcess(request)));

        return mapping.findForward("ratifyCandidacy");
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.candidacy.RatifyCandidacyBean

    }

    public ActionForward ratifyCandidacy(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) {

        final RatifyCandidacyBean bean = getRenderedObject("ratifyCandidacyBean");
        try {
            ExecuteProcessActivity.run(getProcess(request),
                    org.fenixedu.academic.domain.phd.candidacy.activities.RatifyCandidacy.class, bean);
            addSuccessMessage(request, "message.candidacy.ratified.successfuly");
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.candidacy.RatifyCandidacyBean

                requestRatifyBean);
    }

    private void ratifyCandidacyProcess(final User userView, final PhdIndividualProgramProcess individualProcess) {
        final PhdProgramCandidacyProcess candidacyProcess = individualProcess.getCandidacyProcess();
        final RatifyCandidacyBean ratifyBean = new RatifyCandidacyBean(candidacyProcess);
        ratifyBean.setWhenRatified(getProcessBean().getRatificationDate());
        ExecuteProcessActivity.run(candidacyProcess,
                org.fenixedu.academic.domain.phd.candidacy.activities.RatifyCandidacy.class.getSimpleName(), ratifyBean);
    }
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.