From b53da04d63554049e5b3895321b994c9c20b140a Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Fri, 12 Apr 2013 14:45:05 +0000
Subject: [PATCH] Fix issue OPENDJ-861: Etag attribute invalid when used in conjunction with pre- and post- read controls

---
 opends/src/server/org/opends/server/authorization/dseecompat/AciEffectiveRights.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/authorization/dseecompat/AciEffectiveRights.java b/opends/src/server/org/opends/server/authorization/dseecompat/AciEffectiveRights.java
index a09880c..616641b 100644
--- a/opends/src/server/org/opends/server/authorization/dseecompat/AciEffectiveRights.java
+++ b/opends/src/server/org/opends/server/authorization/dseecompat/AciEffectiveRights.java
@@ -23,7 +23,7 @@
  *
  *
  *      Copyright 2008 Sun Microsystems, Inc.
- *      Portions Copyright 2011 ForgeRock AS
+ *      Portions Copyright 2011-2013 ForgeRock AS
  */
 
 package org.opends.server.authorization.dseecompat;
@@ -32,9 +32,9 @@
 import org.opends.server.core.DirectoryServer;
 import org.opends.server.types.*;
 
-import java.util.LinkedHashSet;
 import java.util.LinkedList;
 import java.util.List;
+import java.util.Set;
 
 /**
  * This class implements the dseecompat geteffectiverights evaluation.
@@ -189,7 +189,7 @@
    *                   privilege was found.
    */
   public static void addRightsToEntry(AciHandler handler,
-      LinkedHashSet<String> searchAttributes,
+      Set<String> searchAttributes,
       AciLDAPOperationContainer container, final Entry e,
       boolean skipCheck)
   {

--
Gitblit v1.10.0