| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Copyright 2008 Sun Microsystems, Inc. |
| | | * Copyright 2008-2009 Sun Microsystems, Inc. |
| | | */ |
| | | package org.opends.server.core; |
| | | |
| | |
| | | import org.opends.server.types.AttributeType; |
| | | import org.opends.server.types.ByteString; |
| | | import org.opends.server.types.DN; |
| | | |
| | | import java.util.Set; |
| | | |
| | | /** |
| | | * This abstract class wraps/decorates a given compare operation. |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public Set<String> getAttributeOptions() |
| | | { |
| | | return compare.getAttributeOptions(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void setAttributeOptions(Set<String> attributeOptions) |
| | | { |
| | | compare.setAttributeOptions(attributeOptions); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public ByteString getAssertionValue() |
| | | { |
| | | return compare.getAssertionValue(); |