/**
  * Get the number of password change done by a user since the given date.
  *
  * @param minDate Minimum date to consider.
  * @param nUserId Id of the user
  * @param plugin The plugin
  * @return The number of password change done by the user since the given date.
  */
 public static int countUserPasswordHistoryFromDate(
     Timestamp minDate, int nUserId, Plugin plugin) {
   return _dao.countUserPasswordHistoryFromDate(minDate, nUserId, plugin);
 }