Package org.fenixedu.academic.dto.accounting.penaltyExemption

Examples of org.fenixedu.academic.dto.accounting.penaltyExemption.CreatePhdRegistrationFeePenaltyExemptionBean


        return showExemptions(mapping, form, request, response);
    }

    public ActionForward prepareCreatePhdRegistrationFeePenaltyExemption(ActionMapping mapping, ActionForm actionForm,
            HttpServletRequest request, HttpServletResponse response) {
        request.setAttribute("createPenaltyExemptionBean", new CreatePhdRegistrationFeePenaltyExemptionBean(
                (PhdRegistrationFee) getEvent(request)));
        return mapping.findForward("createPhdRegistrationFeePenaltyExemption");
    }
View Full Code Here


    }

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

        final CreatePhdRegistrationFeePenaltyExemptionBean penaltyExemptionBean =
                getRenderedObject("create-penalty-exemption-bean");
        request.setAttribute("eventId", penaltyExemptionBean.getEvent().getExternalId());

        try {
            CreatePhdRegistrationFeePenaltyExemption.run(getLoggedPerson(request), penaltyExemptionBean);
        } catch (DomainException ex) {
            addActionMessage(request, ex.getKey(), ex.getArgs());
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.accounting.penaltyExemption.CreatePhdRegistrationFeePenaltyExemptionBean

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.