Package com.bea.wli.config.resource
Class Diagnostic
java.lang.Object
com.bea.wli.config.resource.Diagnostic
- All Implemented Interfaces:
Serializable
Represent a particular validation message related to a resource. Diagnostic objects
are generated as a result of validation that is performed when a resource changes. Such changes in the
system trigger validation for the changed resource, as well as all other resources that (transitively)
depend on the changed resource.
A diagnostic object contains a system severity level, a user severity level, a message, an optional location, an optional numeric code and an optional exception element. This class does not put any restrictions on the form and meaning of location and numeric codes. Such semantics should be published explicitly by the generator of the diagnostic object so that the interpretation of these fields can be done by users unambiguously.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enumerated type that describes how this status should be interpreted by the configuration framework.static enum
Describes the user visible severity of the diagnostic message. -
Constructor Summary
ConstructorsConstructorDescriptionDiagnostic
(Diagnostic.Severity severity, Diagnostic.UserSeverity userSeverity, int code, Object location, String message, Exception exception) Create a diagnostic object with the given arguments. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
getCode()
Returns the user given codeReturns the exception if any.Returns the location that this diagnostic message refers to.Returns the diagnostic messageThe severity of this diagnostic object.Returns the user visible severity of this objectint
hashCode()
static Diagnostic
mkCannotCommit
(int code, Object location, String message, Exception ex) Creates a Diagnostic object with CannotCommit severity.static Diagnostic
mkCannotCreate
(int code, Object location, String message, Exception ex) Creates a Diagnostic object with CannotCreate severity.static Diagnostic
mkValid
(Diagnostic.UserSeverity userSeverity, int code, Object location, String message) Creates a Diagnostic object with Valid severity.
-
Constructor Details
-
Diagnostic
public Diagnostic(Diagnostic.Severity severity, Diagnostic.UserSeverity userSeverity, int code, Object location, String message, Exception exception) Create a diagnostic object with the given arguments.- Parameters:
severity
- the severity level for this diagnostic message. Cannot be null.code
- optional numeric code for this diagnostic object, whose semantics must be published elsewhere.location
- optional location where this diagnostic object relates to. The semantic of the location field must be published elsewhere.message
- optional the message. If null, the exception must be non-null.exception
- optional exception. if null, the message must be non-null.
-
-
Method Details
-
mkValid
public static Diagnostic mkValid(Diagnostic.UserSeverity userSeverity, int code, Object location, String message) Creates a Diagnostic object with Valid severity. Internal use -
mkCannotCommit
Creates a Diagnostic object with CannotCommit severity. Internal use -
mkCannotCreate
Creates a Diagnostic object with CannotCreate severity. Internal use -
getSeverity
The severity of this diagnostic object. -
getUserSeverity
Returns the user visible severity of this object -
getCode
public int getCode()Returns the user given code -
getLocation
Returns the location that this diagnostic message refers to. -
getMessage
Returns the diagnostic message -
getException
Returns the exception if any. It is possible that the exception that is generated by the validator on one JVM is not on the classpath of the client who is accessing the exception. In order to avoid serialization errors, the exception is wrapped with a serialization safe object. The exception is serialized into a byte array when the diagnostic object is constructed. Furthermore a serialization-safe stack trace representation of the exception is kept alongside. If on deserialization the original exception cannot be recovered, the serialization-safe stack trace is returned. -
equals
-
hashCode
public int hashCode()
-