| | |
| | | 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; |
| | |
| | | * 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 |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override |
| | | public AttributeValue getCurrentAttributeValue() { |
| | | public ByteString getCurrentAttributeValue() { |
| | | return attributeValue; |
| | | } |
| | | |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | @Override |
| | | public void setCurrentAttributeValue(AttributeValue value) { |
| | | public void setCurrentAttributeValue(ByteString value) { |
| | | attributeValue=value; |
| | | } |
| | | |