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

Matthew Swift
28.14.2011 91ad9df1aaa40d59a4172de488949de4a838a9bb
Issue OPENDJ-262: Implement pass through authentication (PTA)

Add new properties for configuring password caching (fix mock cfg in unit tests).

1 files modified
50 ■■■■■ changed files
opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyTestCase.java 50 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyTestCase.java
@@ -737,6 +737,56 @@
    {
      return mappedSearchBindPasswordProperty;
    }
    /**
     * {@inheritDoc}
     */
    public long getCachedPasswordMaxAge()
    {
      return 86400;
    }
    /**
     * {@inheritDoc}
     */
    public long getCachedPasswordMinAge()
    {
      return 10;
    }
    /**
     * {@inheritDoc}
     */
    public String getCachedPasswordStorageScheme()
    {
      return null;
    }
    /**
     * {@inheritDoc}
     */
    public DN getCachedPasswordStorageSchemeDN()
    {
      return null;
    }
    /**
     * {@inheritDoc}
     */
    public boolean isUsePasswordCaching()
    {
      return false;
    }
  }