Package com.bea.wli.config.resource
Enum Diagnostic.Severity
- All Implemented Interfaces:
Serializable
,Comparable<Diagnostic.Severity>
,java.lang.constant.Constable
- Enclosing class:
- Diagnostic
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates 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).Indicates a severe problem with the resource data so that the resource cannot be updated or created with the given data.Indicates that the resource has valid data. -
Method Summary
Modifier and TypeMethodDescriptionstatic Diagnostic.Severity
Returns the more severe of the two severity types,CannotCreate
being the most severe andValid
being the least severe.Returns the default user severity for this severity levelboolean
Returns true if this severity level indicates a valid severity level, namely, returns true if the severity isValid
static Diagnostic.Severity
Returns the enum constant of this type with the specified name.static Diagnostic.Severity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Valid
Indicates that the resource has valid data. A valid resource may be accompanied with informative diagnostic messages. -
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
Indicates a severe problem with the resource data so that the resource cannot be updated or created with the given data.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
combine
Returns the more severe of the two severity types,CannotCreate
being the most severe andValid
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 isValid
- Returns:
-
getDefaultUserSeverity
Returns the default user severity for this severity level- Returns:
-