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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/CertificateListSyntax.java
@@ -97,7 +97,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_OCTET_STRING_OID);
    if (defaultEqualityMatchingRule == null)
@@ -135,7 +134,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_CERTLIST_NAME;
  }
@@ -148,7 +146,6 @@
   */
  public String getOID()
  {
    return SYNTAX_CERTLIST_OID;
  }
@@ -161,7 +158,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_CERTLIST_DESCRIPTION;
  }
@@ -177,7 +173,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -193,7 +188,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    return defaultOrderingMatchingRule;
  }
@@ -209,7 +203,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    return defaultSubstringMatchingRule;
  }
@@ -225,7 +218,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -247,7 +239,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    // All values will be acceptable for the certificate list syntax.
    return true;
  }