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

dugan
05.16.2006 ec8dd4540b7be98f80e073c1df7bbc536241571a
opendj-sdk/opends/src/server/org/opends/server/messages/SchemaMessages.java
@@ -2945,7 +2945,24 @@
  public static final int MSGID_ATTR_SYNTAX_AUTHPW_INVALID_TRAILING_CHAR =
       CATEGORY_MASK_SCHEMA | SEVERITY_MASK_SEVERE_ERROR | 263;
  /**
   * The message ID for the message that will be used if an attribute syntax
   * extension value cannot be parsed because an invalid character was found.
   * This takes a two arguments, which are the provided value, and the position
   * of the invalid character.
   */
  public static final int
       MSGID_ATTR_SYNTAX_ATTRSYNTAX_EXTENSION_INVALID_CHARACTER =
            CATEGORY_MASK_SCHEMA | SEVERITY_MASK_MILD_ERROR | 264;
  /**
   * The message ID for the message that will be used if an attribute syntax
   * extension value cannot be parsed. This takes one argument, a string
   * representation of the exception that was caught.
   */
  public static final int
       MSGID_ATTR_SYNTAX_ATTRSYNTAX_INVALID_EXTENSION =
            CATEGORY_MASK_SCHEMA | SEVERITY_MASK_MILD_ERROR | 265;
  /**
   * Associates a set of generic messages with the message IDs defined in this
@@ -4178,6 +4195,15 @@
    registerMessage(MSGID_ATTR_SYNTAX_RELATIVE_SUBTREE_SPECIFICATION_INVALID,
                    "The provided value \"%s\" could not be parsed as a" +
                    " valid relative subtree specification.");
    registerMessage(MSGID_ATTR_SYNTAX_ATTRSYNTAX_EXTENSION_INVALID_CHARACTER,
            "The provided value \"%s\" could not be parsed as an " +
            "attribute syntax extension because an invalid character"+
            "was found at position %d.");
    registerMessage(MSGID_ATTR_SYNTAX_ATTRSYNTAX_INVALID_EXTENSION,
           "The attribute syntax could not be parsed because of an"+
           "invalid extension."+ "%s.");
  }
}