return mapping.findForward("toggleFirstYearShiftsCapacity");
}
public ActionForward blockFirstYearShiftsCapacity(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
final ExecutionYear executionYear = getDomainObject(request, "executionYearId");
Map<ExecutionDegree, Integer> modified = setFirstYearShiftsCapacity(true, executionYear);
request.setAttribute("affectedDegrees", getAffectedDegreesInfo(modified));
request.setAttribute("executionYear", executionYear);
return mapping.findForward("toggleFirstYearShiftsCapacity");