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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/NameAndOptionalUIDSyntax.java
@@ -98,7 +98,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_UNIQUE_MEMBER_OID);
    if (defaultEqualityMatchingRule == null)
@@ -127,7 +126,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_NAME_AND_OPTIONAL_UID_NAME;
  }
@@ -140,7 +138,6 @@
   */
  public String getOID()
  {
    return SYNTAX_NAME_AND_OPTIONAL_UID_OID;
  }
@@ -153,7 +150,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_NAME_AND_OPTIONAL_UID_DESCRIPTION;
  }
@@ -169,7 +165,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -185,7 +180,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    // There is no ordering matching rule by default.
    return null;
  }
@@ -202,7 +196,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -218,7 +211,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -240,7 +232,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    String valueString = value.stringValue().trim();
    int    valueLength = valueString.length();