Package org.fenixedu.academic.service.factoryExecutors

Examples of org.fenixedu.academic.service.factoryExecutors.RegistrationAcademicServiceRequestCreator


        return result;
    }

    public ActionForward chooseServiceRequestType(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("academicServiceRequestCreateBean", new RegistrationAcademicServiceRequestCreator(
                getAndSetRegistration(request)));
        return mapping.findForward("prepareCreateServiceRequest");
    }
View Full Code Here


        } catch (DomainException e) {
            addActionMessage(request, e.getMessage(), e.getArgs());
            return confirmCreateServiceRequest(mapping, actionForm, request, response);
        }

        final RegistrationAcademicServiceRequestCreator bean = getRenderedObject("academicServiceRequestCreateBean");
        request.setAttribute("registration", bean.getRegistration());
        return mapping.findForward("viewRegistrationDetails");
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.service.factoryExecutors.RegistrationAcademicServiceRequestCreator

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.