| | |
| | | * |
| | | * |
| | | * 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; |
| | | |
| | |
| | | * 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. |
| | |
| | | * 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 |