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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/Assertion.java
@@ -29,24 +29,20 @@
/**
 * A compiled attribute value assertion.
 */
public interface Assertion
{
  /**
   * Indicates whether the provided attribute value should be considered
   * a match for this assertion value according to the matching rule.
   * Indicates whether the provided attribute value should be considered a match
   * for this assertion value according to the matching rule.
   *
   * @param attributeValue
   *          The attribute value.
   * @return {@code TRUE} if the attribute value should be considered a
   *         match for the provided assertion value, {@code FALSE} if it
   *         does not match, or {@code UNDEFINED} if the result is
   *         undefined.
   * @return {@code TRUE} if the attribute value should be considered a match
   *         for the provided assertion value, {@code FALSE} if it does not
   *         match, or {@code UNDEFINED} if the result is undefined.
   */
  public abstract ConditionResult matches(ByteSequence attributeValue);
}