Examples of AlumniInfoNotUpdatedBean


Examples of org.fenixedu.academic.dto.alumni.AlumniInfoNotUpdatedBean

    }

    public ActionForward prepareAddRecipients(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        request.setAttribute("createRecipient", new AlumniMailSendToBean());
        request.setAttribute("notUpdatedInfoRecipient", new AlumniInfoNotUpdatedBean());
        return mapping.findForward("addRecipients");
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.alumni.AlumniInfoNotUpdatedBean

        return gepSender;
    }

    public ActionForward selectDegreeType(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        request.setAttribute("notUpdatedInfoRecipient", new AlumniInfoNotUpdatedBean());
        request.setAttribute("createRecipient", getRenderedObject("createRecipient"));

        RenderUtils.invalidateViewState();
        return mapping.findForward("addRecipients");
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.alumni.AlumniInfoNotUpdatedBean

        return manageRecipients(mapping, actionForm, request, response);
    }

    public ActionForward addNotUpdatedInfoRecipients(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        AlumniInfoNotUpdatedBean alumniInfoNotUpdatedBean = getRenderedObject("notUpdatedInfoRecipient");
        if (!alumniInfoNotUpdatedBean.getFormationInfo() && !alumniInfoNotUpdatedBean.getProfessionalInfo()
                && !alumniInfoNotUpdatedBean.getPersonalDataInfo()) {
            RenderUtils.invalidateViewState();
            addActionMessage(request, "label.alumni.choose.formationOrProfessionalOrPersonal");
            request.setAttribute("notUpdatedInfoRecipient", alumniInfoNotUpdatedBean);
            request.setAttribute("createRecipient", new AlumniMailSendToBean());
            return mapping.findForward("addRecipients");
        }
        Sender gepSender = getGEPSender(Sender.getAvailableSenders());
        alumniInfoNotUpdatedBean.createRecipientGroup(gepSender);

        return manageRecipients(mapping, actionForm, request, response);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.