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/AciTargetMatchContext.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java b/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
index ef38536..374038a 100644
--- a/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
+++ b/opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
@@ -22,11 +22,12 @@
*
*
* Copyright 2008 Sun Microsystems, Inc.
+ * Portions Copyright 2014 ForgeRock AS
*/
package org.opends.server.authorization.dseecompat;
import org.opends.server.types.AttributeType;
-import org.opends.server.types.AttributeValue;
+import org.forgerock.opendj.ldap.ByteString;
import org.opends.server.types.Entry;
import java.util.List;
@@ -69,7 +70,7 @@
* The current attribute type value being evaluated.
* @return The current attribute type value being evaluated.
*/
- public AttributeValue getCurrentAttributeValue();
+ public ByteString getCurrentAttributeValue();
/**
* True if the first attribute of the resource entry is being evaluated.
@@ -95,7 +96,7 @@
* Set the attribute value to be evaluated.
* @param v The current attribute value to set to.
*/
- public void setCurrentAttributeValue(AttributeValue v);
+ public void setCurrentAttributeValue(ByteString v);
/**
* True if the target matching code found an entry test rule. An
--
Gitblit v1.10.0