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);
}
public ActionForward viewChangeSeteUserPassword(ActionMapping mapping,
ActionForm form,