HttpServletRequest request,
HttpServletResponse response) throws Exception {
doCheckAuthorization(request);
SeteUserProfileService service = getService(SeteUserProfileService.class);
CreateSeteUserProfileVo csupvo = new CreateSeteUserProfileVo();
csupvo.setCreator(getAuthenticatedUser(request).getUserId().toString());
BeanUtils.copyProperties(csupvo, form);
service.editSeteUserProfile(csupvo);
return mapping.findForward(WebConstants.FORWARD_VIEW);
}