Package org.fenixedu.academic.service.factoryExecutors.ExternalRegistrationDataFactoryExecutor

Examples of org.fenixedu.academic.service.factoryExecutors.ExternalRegistrationDataFactoryExecutor.ExternalRegistrationDataEditor


public class ManageExternalRegistrationDataDA extends FenixDispatchAction {

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

        final ExternalRegistrationDataEditor bean;
        if (getRenderedObject() != null) {
            bean = getRenderedObject();
            request.setAttribute("registration", bean.getExternalRegistrationData().getRegistration());
        } else {
            bean = new ExternalRegistrationDataEditor(getAndTransportRegistration(request).getExternalRegistrationData());
        }
        request.setAttribute("externalRegistrationDataBean", bean);

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

TOP

Related Classes of org.fenixedu.academic.service.factoryExecutors.ExternalRegistrationDataFactoryExecutor.ExternalRegistrationDataEditor

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.