mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
28.54.2011 d3f125d4cffea5caff7edf2d2f1d64183fbf55b9
opends/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyFactory.java
@@ -1523,6 +1523,16 @@
     *         connection factories to determine when they are online.
     */
    ScheduledExecutorService getScheduledExecutorService();
    /**
     * Returns the current time in milli-seconds in order to perform cached
     * password expiration checks.
     *
     * @return The current time in milli-seconds.
     */
    long getCurrentTimeMillis();
  }
@@ -2125,6 +2135,13 @@
      return scheduler;
    }
    public long getCurrentTimeMillis()
    {
      return System.currentTimeMillis();
    }
  };