// this code retrieves a UserVO for some unique user identifier //and then updates the user definition
public UserVO updateUser(Integer userID) throws SecurityException
{
UserVO currentUser =
administrationFacade_.getUserObject
(userID.intValue(), this.getSessionProfile());
currentUser.setBusinessTitle("Senior Executive");
currentUser.setDepartment("Executive Staff");
return administrationFacade_.setUser
(currentUser,"newpassword",this.getSessionProfile());
}
}