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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/PostalAddressSyntax.java
@@ -95,7 +95,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_CASE_IGNORE_OID);
    if (defaultEqualityMatchingRule == null)
@@ -124,7 +123,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_POSTAL_ADDRESS_NAME;
  }
@@ -137,7 +135,6 @@
   */
  public String getOID()
  {
    return SYNTAX_POSTAL_ADDRESS_OID;
  }
@@ -150,7 +147,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_POSTAL_ADDRESS_DESCRIPTION;
  }
@@ -166,7 +162,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -182,7 +177,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    // Ordering matching will not be allowed by default.
    return null;
  }
@@ -199,7 +193,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -215,7 +208,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // Approximate matching will not be allowed by default.
    return null;
  }
@@ -237,7 +229,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    // We'll allow any value.
    return true;
  }