From 377b2709c64b32fe93905b466482216c2cc0581c Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 19 Mar 2014 16:30:32 +0000
Subject: [PATCH] OPENDJ-1368 (CR-3232) Remove AttributeValue

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

diff --git a/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciContainer.java b/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciContainer.java
index cd00948..b9492d9 100644
--- a/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciContainer.java
+++ b/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciContainer.java
@@ -36,6 +36,7 @@
 import java.util.HashMap;
 import java.util.List;
 
+import org.forgerock.opendj.ldap.ByteString;
 import org.opends.server.api.ClientConnection;
 import org.opends.server.api.Group;
 import org.opends.server.controls.GetEffectiveRightsRequestControl;
@@ -67,7 +68,7 @@
      * The attribute type value in the resource entry currently being
      * evaluated.
      */
-    private AttributeValue attributeValue;
+    private ByteString attributeValue;
 
     /**
      * True if this is the first attribute type in the resource entry being
@@ -557,7 +558,7 @@
     * {@inheritDoc}
     */
     @Override
-    public AttributeValue getCurrentAttributeValue() {
+    public ByteString getCurrentAttributeValue() {
         return attributeValue;
     }
 
@@ -573,7 +574,7 @@
     * {@inheritDoc}
     */
     @Override
-    public void setCurrentAttributeValue(AttributeValue value) {
+    public void setCurrentAttributeValue(ByteString value) {
         attributeValue=value;
     }
 

--
Gitblit v1.10.0