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

boli
01.27.2007 455897cc245b67d929f409a93cfa7106e835cc1f
opends/src/server/org/opends/server/schema/OctetStringSubstringMatchingRule.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.server.schema;
@@ -38,7 +38,6 @@
import org.opends.server.types.DirectoryException;
import org.opends.server.types.InitializationException;
import static org.opends.server.loggers.Debug.*;
import static org.opends.server.schema.SchemaConstants.*;
import static org.opends.server.util.StaticUtils.*;
@@ -52,11 +51,6 @@
public class OctetStringSubstringMatchingRule
       extends SubstringMatchingRule
{
  /**
   * The fully-qualified name of this class for debugging purposes.
   */
  private static final String CLASS_NAME =
       "org.opends.server.schema.OctetStringSubstringMatchingRule";
@@ -67,7 +61,6 @@
  {
    super();
    assert debugConstructor(CLASS_NAME);
  }
@@ -89,8 +82,6 @@
  public void initializeMatchingRule(ConfigEntry configEntry)
         throws ConfigException, InitializationException
  {
    assert debugEnter(CLASS_NAME, "initializeMatchingRule",
                      String.valueOf(configEntry));
    // No initialization is required.
  }
@@ -105,7 +96,6 @@
   */
  public String getName()
  {
    assert debugEnter(CLASS_NAME, "getName");
    return SMR_OCTET_STRING_NAME;
  }
@@ -119,7 +109,6 @@
   */
  public String getOID()
  {
    assert debugEnter(CLASS_NAME, "getOID");
    return SMR_OCTET_STRING_OID;
  }
@@ -134,7 +123,6 @@
   */
  public String getDescription()
  {
    assert debugEnter(CLASS_NAME, "getDescription");
    // There is no standard description for this matching rule.
    return null;
@@ -150,7 +138,6 @@
   */
  public String getSyntaxOID()
  {
    assert debugEnter(CLASS_NAME, "getSyntaxOID");
    return SYNTAX_SUBSTRING_ASSERTION_OID;
  }
@@ -171,7 +158,6 @@
  public ByteString normalizeValue(ByteString value)
         throws DirectoryException
  {
    assert debugEnter(CLASS_NAME, "normalizeValue", String.valueOf(value));
    return new ASN1OctetString(value.value());
  }
@@ -192,7 +178,6 @@
  public ByteString normalizeSubstring(ByteString substring)
         throws DirectoryException
  {
    assert debugEnter(CLASS_NAME, "normalizeSubstring");
    // This is exactly the same as normalizing a full value.
    return new ASN1OctetString(substring.value());
@@ -221,9 +206,6 @@
                                       List<ByteString> subAnyElements,
                                       ByteString subFinal)
  {
    assert debugEnter(CLASS_NAME, "valueMatchesSubstring",
                      String.valueOf(value), String.valueOf(subInitial),
                      String.valueOf(subAnyElements), String.valueOf(subFinal));
    byte[] valueBytes = value.value();