}
public ActionForward deleteStatute(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
HttpServletResponse response) throws FenixServiceException {
final StudentStatute studentStatute = getDomainObject(request, "statuteId");
final Student student = studentStatute.getStudent();
try {
// delete statute
executeFactoryMethod(new DeleteStudentStatuteFactory(studentStatute));
} catch (DomainException de) {