From 2c7b8d6d8c0c177e8089272140dae66b87852ff7 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 17 Jul 2007 21:59:32 +0000
Subject: [PATCH] Implement support for password history functionality. The password history can be maintained either based on the number of previous passwords to remember (e.g., a user cannot re-use any of his/her last five passwords), or the length of time the previous passwords have been retained (e.g., a user cannot re-use any password he/she has had within the last 365 days), or both.
---
opends/tests/unit-tests-testng/src/server/org/opends/server/tools/ManageAccountTestCase.java | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/ManageAccountTestCase.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/ManageAccountTestCase.java
index 0ca38f2..8635359 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/ManageAccountTestCase.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/tools/ManageAccountTestCase.java
@@ -110,7 +110,9 @@
new Object[] { "get-password-changed-by-required-time" },
new Object[] { "set-password-changed-by-required-time" },
new Object[] { "clear-password-changed-by-required-time" },
- new Object[] { "get-seconds-until-required-change-time" }
+ new Object[] { "get-seconds-until-required-change-time" },
+ new Object[] { "get-password-history" },
+ new Object[] { "clear-password-history" }
};
}
@@ -147,7 +149,8 @@
new Object[] { "get-grace-login-use-times" },
new Object[] { "get-remaining-grace-login-count" },
new Object[] { "get-password-changed-by-required-time" },
- new Object[] { "get-seconds-until-required-change-time" }
+ new Object[] { "get-seconds-until-required-change-time" },
+ new Object[] { "get-password-history" }
};
}
@@ -219,7 +222,8 @@
new Object[] { "clear-last-login-time" },
new Object[] { "clear-password-is-reset" },
new Object[] { "clear-grace-login-use-times" },
- new Object[] { "clear-password-changed-by-required-time" }
+ new Object[] { "clear-password-changed-by-required-time" },
+ new Object[] { "clear-password-history" }
};
}
--
Gitblit v1.10.0