From 87a32e534959a6ffaf12c6d69ce98197f7bee596 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Tue, 20 Sep 2011 11:29:12 +0000
Subject: [PATCH] Issue OPENDJ-262: Implement pass through authentication (PTA)

---
 opends/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyFactory.java |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyFactory.java b/opends/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyFactory.java
index 304f2a8..4583814 100644
--- a/opends/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyFactory.java
+++ b/opends/src/server/org/opends/server/extensions/LDAPPassThroughAuthenticationPolicyFactory.java
@@ -73,7 +73,6 @@
 
   // TODO: handle password policy response controls? AD?
   // TODO: custom aliveness pings
-  // TODO: manage account lockout
   // TODO: cache password
 
   /**
@@ -1555,14 +1554,13 @@
     private final class StateImpl extends AuthenticationPolicyState
     {
 
-      private final Entry userEntry;
       private ByteString cachedPassword = null;
 
 
 
       private StateImpl(final Entry userEntry)
       {
-        this.userEntry = userEntry;
+        super(userEntry);
       }
 
 

--
Gitblit v1.10.0