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/AciTargetMatchContext.java |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java b/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
index 710569a..a3b79f8 100644
--- a/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
+++ b/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
@@ -24,13 +24,12 @@
  *
  *      Copyright 2008 Sun Microsystems, Inc.
  */
-
 package org.opends.server.authorization.dseecompat;
 
 import org.opends.server.types.AttributeType;
 import org.opends.server.types.AttributeValue;
 import org.opends.server.types.Entry;
-import java.util.LinkedList;
+import java.util.List;
 
 /**
  * The AciTargetMatchContext interface provides a
@@ -46,13 +45,13 @@
      * Set the deny ACI list.
      * @param denyList The deny ACI list.
      */
-    public void setDenyList(LinkedList<Aci> denyList);
+    public void setDenyList(List<Aci> denyList);
 
     /**
      * Set the allow ACI list.
      * @param allowList The list of allow ACIs.
      */
-    public void setAllowList(LinkedList<Aci> allowList);
+    public void setAllowList(List<Aci> allowList);
 
     /**
      * Get the entry being evaluated. This is known as the

--
Gitblit v1.10.0