Package org.fenixedu.academic.dto.commons

Examples of org.fenixedu.academic.dto.commons.SearchCurricularCourseByDegree$SearchCurricularCourseDegreeCurricularPlansProvider


    @Override
    public ActionForward fillCandidacyInformation(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        final StandaloneIndividualCandidacyProcessBean bean = getIndividualCandidacyProcessBean();
        bean.setSearchCurricularCourseByDegree(new SearchCurricularCourseByDegree(bean.getCandidacyExecutionInterval()));
        return super.fillCandidacyInformation(mapping, actionForm, request, response);
    }
View Full Code Here


    }

    public ActionForward prepareExecuteEditCandidacyInformation(ActionMapping mapping, ActionForm actionForm,
            HttpServletRequest request, HttpServletResponse response) {
        final StandaloneIndividualCandidacyProcessBean bean = new StandaloneIndividualCandidacyProcessBean(getProcess(request));
        bean.setSearchCurricularCourseByDegree(new SearchCurricularCourseByDegree(getProcess(request)
                .getCandidacyExecutionInterval()));
        request.setAttribute(getIndividualCandidacyProcessBeanName(), bean);
        return mapping.findForward("edit-candidacy-information");
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.commons.SearchCurricularCourseByDegree$SearchCurricularCourseDegreeCurricularPlansProvider

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.