Examples of EmergencyContactBean


Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

    public ActionForward backToShowInformation(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        final Person person = Authenticate.getUser().getPerson();
        request.setAttribute("personBean", new PersonBean(person));
        EmergencyContactBean emergencyContactBean = new EmergencyContactBean(person);
        request.setAttribute("emergencyContactBean", emergencyContactBean);
        return mapping.findForward("visualizePersonalInformation");
    }
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

        UploadOwnPhoto.run(ByteStreams.toByteArray(photo.getFileInputStream()),
                ContentType.getContentType(photo.getContentType()));
        final Person person = Authenticate.getUser().getPerson();
        request.setAttribute("personBean", new PersonBean(person));
        EmergencyContactBean emergencyContactBean = new EmergencyContactBean(person);
        request.setAttribute("emergencyContactBean", emergencyContactBean);
        return mapping.findForward("visualizePersonalInformation");
    }
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

    }

    public ActionForward cancel(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        request.setAttribute("personBean", new PersonBean(AccessControl.getPerson()));
        request.setAttribute("emergencyContactBean", new EmergencyContactBean(AccessControl.getPerson()));
        return mapping.findForward("visualizePersonalInformation");
    }
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

        Photograph photo = AccessControl.getPerson().getPersonalPhotoEvenIfRejected();
        if (photo != null) {
            photo.cancelSubmission();
        }
        request.setAttribute("personBean", new PersonBean(AccessControl.getPerson()));
        request.setAttribute("emergencyContactBean", new EmergencyContactBean(AccessControl.getPerson()));
        return mapping.findForward("visualizePersonalInformation");
    }
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

    }

    public ActionForward backToShowInformation(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("personBean", new PersonBean(AccessControl.getPerson()));
        request.setAttribute("emergencyContactBean", new EmergencyContactBean(AccessControl.getPerson()));
        return mapping.findForward("visualizePersonalInformation");
    }
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

    @Override
    public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        PersonBean person = new PersonBean(getLoggedUser());
        EmergencyContactBean emergencyContactBean = new EmergencyContactBean(getLoggedUser());
        request.setAttribute("personBean", person);
        request.setAttribute("emergencyContactBean", emergencyContactBean);
        return super.execute(mapping, form, request, response);
    }
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

    public ActionForward updateNickname(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        PersonBean personBean = getRenderedObject("nickname");
        Person person = getLoggedPerson(request);
        EmergencyContactBean emergencyContactBean = new EmergencyContactBean(person);

        try {
            person.setNickname(personBean.getNickname());
        } catch (DomainException e) {
            addActionMessage(request, e.getKey());
            request.setAttribute("personBean", new PersonBean(person));
            request.setAttribute("emergencyContactBean", new EmergencyContactBean(person));
        } catch (BennuCoreDomainException be) {
            addActionMessage(request, be.getLocalizedMessage(), false);
            request.setAttribute("personBean", new PersonBean(person));
            request.setAttribute("emergencyContactBean", new EmergencyContactBean(person));

        }

        request.setAttribute("personBean", personBean);
        request.setAttribute("emergencyContactBean", emergencyContactBean);
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.person.UpdateEmergencyContactDA.EmergencyContactBean

    public ActionForward backToShowInformation(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        final Person person = Authenticate.getUser().getPerson();
        request.setAttribute("personBean", new PersonBean(person));
        EmergencyContactBean emergencyContactBean = new EmergencyContactBean(person);
        request.setAttribute("emergencyContactBean", emergencyContactBean);
        return mapping.findForward("visualizePersonalInformation");
    }
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.