}
private ActionForward editResidencePriceTableProperty(ActionMapping mapping, ActionForm actionForm,
HttpServletRequest request, HttpServletResponse response, String forwardName) throws Exception {
ResidenceManagementUnit unit = getManagementUnit(request);
ResidenceMonth month = getResidenceMonth(request);
request.setAttribute("residenceMonth", month);
request.setAttribute("priceTable", unit.getResidencePriceTable());
return mapping.findForward(forwardName);
}