393394395396397398399400
update_pass_plain_pw_sp.setString(1, JIDUtils.getNodeID(user)); update_pass_plain_pw_sp.setString(2, password); update_pass_plain_pw_sp.execute(); } } catch (SQLException e) { throw new TigaseDBException("Problem accessing repository.", e); } }
413414415416417418419420
synchronized (remove_user_sp) { remove_user_sp.setString(1, JIDUtils.getNodeID(user)); remove_user_sp.execute(); } } catch (SQLException e) { throw new TigaseDBException("Problem accessing repository.", e); } }