/**
   * Update of the databaseUser which is specified in parameter
   *
   * @param databaseUser The instance of the DatabaseUser which contains the data to store
   * @param strNewPassword The new password to store
   * @param plugin The current plugin using this method
   * @return The instance of the DatabaseUser which has been updated
   */
  public static DatabaseUser updatePassword(
      DatabaseUser databaseUser, String strNewPassword, Plugin plugin) {
    _dao.updatePassword(databaseUser, strNewPassword, plugin);

    return databaseUser;
  }