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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/schema/AuthPasswordSyntax.java
@@ -93,7 +93,6 @@
  public void initializeSyntax(ConfigEntry configEntry)
         throws ConfigException
  {
    defaultEqualityMatchingRule =
         DirectoryServer.getEqualityMatchingRule(EMR_AUTH_PASSWORD_EXACT_OID);
    if (defaultEqualityMatchingRule == null)
@@ -113,7 +112,6 @@
   */
  public String getSyntaxName()
  {
    return SYNTAX_AUTH_PASSWORD_NAME;
  }
@@ -126,7 +124,6 @@
   */
  public String getOID()
  {
    return SYNTAX_AUTH_PASSWORD_OID;
  }
@@ -139,7 +136,6 @@
   */
  public String getDescription()
  {
    return SYNTAX_AUTH_PASSWORD_DESCRIPTION;
  }
@@ -155,7 +151,6 @@
   */
  public EqualityMatchingRule getEqualityMatchingRule()
  {
    return defaultEqualityMatchingRule;
  }
@@ -171,7 +166,6 @@
   */
  public OrderingMatchingRule getOrderingMatchingRule()
  {
    // There is no ordering matching rule by default.
    return null;
  }
@@ -188,7 +182,6 @@
   */
  public SubstringMatchingRule getSubstringMatchingRule()
  {
    // There is no substring matching rule by default.
    return null;
  }
@@ -205,7 +198,6 @@
   */
  public ApproximateMatchingRule getApproximateMatchingRule()
  {
    // There is no approximate matching rule by default.
    return null;
  }
@@ -227,7 +219,6 @@
  public boolean valueIsAcceptable(ByteString value,
                                   StringBuilder invalidReason)
  {
    try
    {
      decodeAuthPassword(value.stringValue());
@@ -257,8 +248,6 @@
  public static StringBuilder[] decodeAuthPassword(String authPasswordValue)
         throws DirectoryException
  {
    // Create placeholders for the values to return.
    StringBuilder scheme    = new StringBuilder();
    StringBuilder authInfo  = new StringBuilder();
@@ -510,8 +499,6 @@
   */
  public static boolean isEncoded(ByteString value)
  {
    // FIXME -- Make this more efficient, and don't use exceptions for flow
    // control.