mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
19.30.2014 377b2709c64b32fe93905b466482216c2cc0581c
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;
    }