oracle.owb.compile
Interface Messages
- public interface Messages
Messages interface represents messages. These messages are part of the
ValidationResult
|
Method Summary |
java.lang.String |
getCode()
This method returns the status code of the validation process. |
java.lang.String |
getDetails()
This method returns the details of the validation process. |
java.lang.String |
getMessageText()
This method returns the message text of the validation process. |
getCode
public java.lang.String getCode()
- This method returns the status code of the validation process. There are three codes:
SUCCESS, ERROR, WARNING.
- Returns:
- a String.
getMessageText
public java.lang.String getMessageText()
- This method returns the message text of the validation process.
The message text tells what is the error.
- Returns:
- a String.
getDetails
public java.lang.String getDetails()
- This method returns the details of the validation process.
The details usually explain the error in an elaborate way, and for many trivial errors
it may suggest corrective measures.
- Returns:
- a String.