From 920dfefccbde844e87733b7aa457d5ed6776dde2 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 11 Jul 2007 19:56:07 +0000
Subject: [PATCH] Revert unrelated changes committed accidentally in revision 2359. The changes didn't break anything, but they weren't related to the issue being addressed by that commit and were not a complete fix for any other issue.
---
opends/src/server/org/opends/server/core/PasswordPolicy.java | 24 ------------------------
1 files changed, 0 insertions(+), 24 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/PasswordPolicy.java b/opends/src/server/org/opends/server/core/PasswordPolicy.java
index 6e5eb90..14fea7d 100644
--- a/opends/src/server/org/opends/server/core/PasswordPolicy.java
+++ b/opends/src/server/org/opends/server/core/PasswordPolicy.java
@@ -39,7 +39,6 @@
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.CopyOnWriteArraySet;
-import org.opends.server.admin.std.meta.PasswordPolicyCfgDefn;
import org.opends.server.admin.std.server.PasswordPolicyCfg;
import org.opends.server.admin.std.server.PasswordValidatorCfg;
import org.opends.server.api.AccountStatusNotificationHandler;
@@ -216,11 +215,6 @@
private CopyOnWriteArrayList<String> previousLastLoginTimeFormats =
new CopyOnWriteArrayList<String>();
- // The state update failure policy.
- private PasswordPolicyCfgDefn.StateUpdateFailurePolicy
- stateUpdateFailurePolicy =
- PasswordPolicyCfgDefn.StateUpdateFailurePolicy.REACTIVE;
-
/**
@@ -807,11 +801,6 @@
// Get the idle lockout duration.
this.idleLockoutInterval = (int) configuration.getIdleLockoutInterval();
-
- // Get the state update failure policy.
- this.stateUpdateFailurePolicy = configuration.getStateUpdateFailurePolicy();
-
-
/*
* Holistic validation.
*/
@@ -1459,19 +1448,6 @@
/**
- * Retrieves the state update failure policy for this password policy.
- *
- * @return The state update failure policy for this password policy.
- */
- public PasswordPolicyCfgDefn.StateUpdateFailurePolicy
- getStateUpdateFailurePolicy()
- {
- return stateUpdateFailurePolicy;
- }
-
-
-
- /**
* Retrieves a string representation of this password policy.
*
* @return A string representation of this password policy.
--
Gitblit v1.10.0