Class Diagnostic

java.lang.Object
com.bea.wli.config.resource.Diagnostic
All Implemented Interfaces:
Serializable

public class Diagnostic extends Object implements 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:
  • 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

      public static Diagnostic mkCannotCommit(int code, Object location, String message, Exception ex)
      Creates a Diagnostic object with CannotCommit severity. Internal use
    • mkCannotCreate

      public static Diagnostic mkCannotCreate(int code, Object location, String message, Exception ex)
      Creates a Diagnostic object with CannotCreate severity. Internal use
    • getSeverity

      public Diagnostic.Severity getSeverity()
      The severity of this diagnostic object.
    • getUserSeverity

      public Diagnostic.UserSeverity getUserSeverity()
      Returns the user visible severity of this object
    • getCode

      public int getCode()
      Returns the user given code
    • getLocation

      public Object getLocation()
      Returns the location that this diagnostic message refers to.
    • getMessage

      public String getMessage()
      Returns the diagnostic message
    • getException

      public Throwable 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

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object