Examples of ExtraCurricularActivityType


Examples of org.fenixedu.academic.domain.student.curriculum.ExtraCurricularActivityType

        return mapping.findForward("create");
    }

    public ActionForward edit(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        ExtraCurricularActivityType type = getDomainObject(request, "activityTypeId");
        if (!type.getExtraCurricularActivitySet().isEmpty()) {
            addErrorMessage(request, "errors", "error.extraCurricularActivityTypes.unableToEditUsedType", type.getName()
                    .getContent());
            return list(mapping, actionForm, request, response);
        }
        request.setAttribute("extraCurricularActivityType", type);
        return mapping.findForward("edit");
View Full Code Here

Examples of org.fenixedu.academic.domain.student.curriculum.ExtraCurricularActivityType

        return mapping.findForward("edit");
    }

    public ActionForward delete(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        ExtraCurricularActivityType type = getDomainObject(request, "activityTypeId");
        try {
            type.delete();
        } catch (DomainException e) {
            addErrorMessage(request, "errors", e.getKey(), e.getArgs());
        }
        return list(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.