com.ibm.carma.ui.events
Class ValidationResult

java.lang.Object
  extended by com.ibm.carma.ui.events.ValidationResult

public class ValidationResult
extends java.lang.Object

Instances of this class describe the results of parameter validation.

Since:
8.0

Field Summary
static int ERROR
          A severity value indicating that the message is an error.
static int INFO
          A severity value indicating that the message is informational.
 java.lang.String message
          The message associated with the validation result.
 int severity
          The severity of the message; should be either INFO, WARNING, or ERROR.
static int WARNING
          A severity value indicating that the message is a warning.
 
Constructor Summary
ValidationResult()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INFO

public static final int INFO
A severity value indicating that the message is informational.

See Also:
Constant Field Values

WARNING

public static final int WARNING
A severity value indicating that the message is a warning.

See Also:
Constant Field Values

ERROR

public static final int ERROR
A severity value indicating that the message is an error.

See Also:
Constant Field Values

severity

public int severity
The severity of the message; should be either INFO, WARNING, or ERROR.


message

public java.lang.String message
The message associated with the validation result.

Constructor Detail

ValidationResult

public ValidationResult()