From e627deb0b7849bb8119b9566dd093b92ce9a2dbd Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 02 Aug 2006 20:31:50 +0000
Subject: [PATCH] Add a new account expiration feature to the password policy. This will make it possible for accounts to be given an expiration time, after which it will not be possible to authenticate as that user or target that user with the proxied authorization control.
---
opends/src/server/org/opends/server/config/ConfigConstants.java | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/config/ConfigConstants.java b/opends/src/server/org/opends/server/config/ConfigConstants.java
index 39b19d4..c815930 100644
--- a/opends/src/server/org/opends/server/config/ConfigConstants.java
+++ b/opends/src/server/org/opends/server/config/ConfigConstants.java
@@ -2932,6 +2932,16 @@
/**
+ * The name of the operational attribute that may appear in a user's entry to
+ * indicate when that account will expire (and therefore may no longer be used
+ * to authenticate).
+ */
+ public static final String OP_ATTR_ACCOUNT_EXPIRATION_TIME =
+ NAME_PREFIX_PWP + "account-expiration-time";
+
+
+
+ /**
* The name of the operational attribute that will appear in an entry to
* indicate when it was created.
*/
--
Gitblit v1.10.0