AuthRealmConfig aRealm = (AuthRealmConfig)realms.get((String)handlerCtx.getInputValue("Realm"));
String grouplist = (String)handlerCtx.getInputValue("GroupList");
String[] groups = GuiUtil.stringToArray(grouplist, ",");
String password = (String)handlerCtx.getInputValue("Password");
String userid = (String)handlerCtx.getInputValue("UserId");
aRealm.updateUser(userid, password, groups);
}catch(Exception ex){
GuiUtil.handleException(handlerCtx, ex);
}
}