}
if (!adminSecurityCheck(request)) {
return mapping.findForward(BaseConstants.FWD_ADMIN_LOGIN);
}
FrontPageForm frontPageForm = (FrontPageForm) form;
FrontPageVO frontPageVO = new FrontPageVO();
BeanUtils.copyProperties(frontPageVO, frontPageForm);
frontPageVO.setLastModifiedBy(getLastModifiedBy(request));
frontPageService.save(frontPageVO);
getFrontPageHelper(request);
resetToken(request);
return mapping.findForward(BaseConstants.FWD_SUCCESS);
}