From 91ad9df1aaa40d59a4172de488949de4a838a9bb Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 28 Sep 2011 13:14:07 +0000
Subject: [PATCH] Issue OPENDJ-262: Implement pass through authentication (PTA)
---
opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyTestCase.java | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 50 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyTestCase.java b/opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyTestCase.java
index a9019c6..6000b01 100644
--- a/opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyTestCase.java
+++ b/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;
+ }
}
--
Gitblit v1.10.0