From d6b0cd5244b2b60ee9b222fa2d75e8b661e6262c Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 12 Jul 2013 10:27:23 +0000
Subject: [PATCH] *.java: Switched the use of collections concrete classes to interfaces.

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

diff --git a/opends/src/server/org/opends/server/authorization/dseecompat/AciEvalContext.java b/opends/src/server/org/opends/server/authorization/dseecompat/AciEvalContext.java
index fc62e3d..751aba7 100644
--- a/opends/src/server/org/opends/server/authorization/dseecompat/AciEvalContext.java
+++ b/opends/src/server/org/opends/server/authorization/dseecompat/AciEvalContext.java
@@ -25,7 +25,6 @@
  *      Copyright 2008-2010 Sun Microsystems, Inc.
  *      Portions Copyright 2011 ForgeRock AS
  */
-
 package org.opends.server.authorization.dseecompat;
 
 import org.opends.server.types.DN;
@@ -34,7 +33,7 @@
 import org.opends.server.api.Group;
 
 import java.net.InetAddress;
-import java.util.LinkedList;
+import java.util.List;
 
 /**
  * Interface that provides a view of the AciContainer that is
@@ -66,13 +65,13 @@
      * Get the list of deny ACIs.
      * @return The deny ACI list.
      */
-    public LinkedList<Aci> getDenyList();
+    public List<Aci> getDenyList();
 
     /**
      * Get the list allow ACIs.
      * @return The allow ACI list.
      */
-    public LinkedList<Aci> getAllowList();
+    public List<Aci> getAllowList();
 
     /**
      * Set when the deny list is being evaluated.

--
Gitblit v1.10.0