return mapping.findForward(BaseConstants.FWD_SUCCESS);
}
public ActionForward viewFrontPageLinks(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
logger.debug("in viewFrontPageLinks...");
FrontPageForm frontPageForm = (FrontPageForm) form;
FrontPageVO frontPageVO = new FrontPageVO();
frontPageVO = frontPageService.findById(frontPageForm.getLinkId());
BeanUtils.copyProperties(frontPageForm, frontPageVO );
return mapping.findForward(BaseConstants.FWD_SUCCESS);
}