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

Gaetan Boismal
09.27.2015 efc41e456f715abe57a69d6136a2d1a1098eae4c
opendj-server-legacy/src/messages/src/org/opends/messages/Severity.java
@@ -46,31 +46,21 @@
    mayInvoke=true)
public enum Severity {
  /**
   * The severity that will be used for informational messages.
   */
  INFORMATION("INFO"),
  /**
   * The severity that will be used for warning messages.
   */
  WARNING("WARN"),
  /**
   * The severity that will be used for warning messages.
   */
  ERROR("ERR"),
  /**
   * The severity that will be used for debug messages.
   */
  /** The severity that will be used for debug messages. */
  DEBUG("DEBUG"),
  /**
   * The severity that will be used for important informational
   * messages.
   */
  NOTICE("NOTE");
  /** The severity that will be used for informational messages. */
  INFORMATION("INFO"),
  /** The severity that will be used for important informational messages. */
  NOTICE("NOTE"),
  /** The severity that will be used for warning messages. */
  WARNING("WARN"),
  /** The severity that will be used for warning messages. */
  ERROR("ERR");
  private static Set<String> PROPERTY_KEY_FORM_VALUES_SET;