Package org.fenixedu.academic.service.factoryExecutors.RegistrationIngressionFactorExecutor

Examples of org.fenixedu.academic.service.factoryExecutors.RegistrationIngressionFactorExecutor.RegistrationIngressionEditor


    }

    @Input
    public ActionForward prepare(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("ingressionBean", new RegistrationIngressionEditor(getRegistration(request)));
        return mapping.findForward("showEditIngression");
    }
View Full Code Here


    }

    public ActionForward postBack(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {

        RegistrationIngressionEditor ingressionInformationBean = getRegistrationIngressionEditor();
        if (!ingressionInformationBean.hasRegistrationProtocol()
                || ingressionInformationBean.getRegistrationProtocol().isEnrolmentByStudentAllowed()) {
            ingressionInformationBean.setAgreementInformation(null);
        }

        RenderUtils.invalidateViewState();
        request.setAttribute("ingressionBean", ingressionInformationBean);
        return mapping.findForward("showEditIngression");
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.service.factoryExecutors.RegistrationIngressionFactorExecutor.RegistrationIngressionEditor

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.