return showFCTScolarshipPostingRules(mapping, form, request, response);
}
public ActionForward prepareEditFCTScolarshipPostingRule(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) {
ExternalScholarshipPhdGratuityContribuitionPR postingRule =
(ExternalScholarshipPhdGratuityContribuitionPR) FenixFramework.getDomainObject(request
.getParameter("postingRule"));
FctScolarshipPostingRuleBean bean = new FctScolarshipPostingRuleBean();
bean.setStartDate(postingRule.getStartDate());
bean.setEndDate(postingRule.getEndDate());
bean.setExternalId(postingRule.getExternalId());
request.setAttribute("bean", bean);
return mapping.findForward("prepareEditFCTScolarshipPostingRule");
}