Interface IWorkflowElementValidationResult
- 
- All Superinterfaces:
 Serializable
public interface IWorkflowElementValidationResult extends Serializable
Represents the result of validating a single workflow node or trigger.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.common.collect.ImmutableList<Throwable>getExceptions()com.google.common.collect.ImmutableList<IWorkflowValidationMessage>getMessages()booleanisValid() 
 - 
 
- 
- 
Method Detail
- 
isValid
boolean isValid()
 
- 
getExceptions
com.google.common.collect.ImmutableList<Throwable> getExceptions()
- Returns:
 - A list of exception that occurred during validation that may be responsible for the element being invalid.
 
 
- 
getMessages
com.google.common.collect.ImmutableList<IWorkflowValidationMessage> getMessages()
- Returns:
 - A list of validation messages for the node or trigger. An error usually represents a critical constraint
 violations, while warnings are only informational. It is however, possible and allowed, for 
isValid()totrueeven if there are error messages.The contrary holds true as well:isValid()may returnfalseeven when there are no messages. 
 
 - 
 
 -