Enum Diagnostic.Severity

java.lang.Object
java.lang.Enum<Diagnostic.Severity>
com.bea.wli.config.resource.Diagnostic.Severity
All Implemented Interfaces:
Serializable, Comparable<Diagnostic.Severity>, java.lang.constant.Constable
Enclosing class:
Diagnostic

public static enum Diagnostic.Severity extends Enum<Diagnostic.Severity>
Enumerated type that describes how this status should be interpreted by the configuration framework. Severity levels are defined in terms of what operations are disallowed (e.g., Cannot create the resource, can create but cannot activate changes) , rather than commonly used ambiguous terms (e.g., Warning, Error, Critical).

  • if type is Valid the resource can be created in session and in core. These kinds of Diagnostic messages are meant to give additional information or suggestion to the user.
  • if type is CannotCommit the resource can be created in session but cannot be committed to the core. Normally this type of Diagnostic is used when a particular piece of data is missing, or has an invalid value.
  • if type is CannotCreate the resources cannot be created/updated even in a session. This type of Diagnostic should be used if the resource data is structurally illegal, or otherwise cannot be used to represent that resource.

  • Enum Constant Details

    • Valid

      public static final Diagnostic.Severity Valid
      Indicates that the resource has valid data. A valid resource may be accompanied with informative diagnostic messages.
    • CannotCommit

      public static final Diagnostic.Severity CannotCommit
      Indicates a problem with the resource data such that the operation (update/create) is allowed, however the updated/created resource cannot be committed to the core (via session activation).
    • CannotCreate

      public static final Diagnostic.Severity CannotCreate
      Indicates a severe problem with the resource data so that the resource cannot be updated or created with the given data.
  • Method Details

    • values

      public static Diagnostic.Severity[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Diagnostic.Severity valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • combine

      Returns the more severe of the two severity types, CannotCreate being the most severe and Valid being the least severe.
      Parameters:
      s1 -
      s2 -
      Returns:
    • isValidSeverity

      public boolean isValidSeverity()
      Returns true if this severity level indicates a valid severity level, namely, returns true if the severity is Valid
      Returns:
    • getDefaultUserSeverity

      public Diagnostic.UserSeverity getDefaultUserSeverity()
      Returns the default user severity for this severity level
      Returns: