Class ProjectValidationResults


  • public class ProjectValidationResults
    extends Object
    Results of project validation. Deserialization only.
    • Method Detail

      • isError

        public boolean isError()
        True if validation found some error
        Returns:
        true in case of validation error, false otherwise
      • isFatalError

        public boolean isFatalError()
        True in case some part of validation crashed (not executed at all)
        Returns:
        true if validation crashed, false otherwise
      • isWarning

        public boolean isWarning()
        True if some warning was found during validation.
        Returns:
        true if some warning was found during validation, false otherwise
      • isValid

        public boolean isValid()
        True if no warning or error is in the validation results.
        Returns:
        true if no warning or error is in the validation results, false otherwise
      • getResults

        public List<ProjectValidationResult> getResults()
        Get validation results, describing output of all validations executed. Can return empty list, in case the validation had no error or warning (is valid)-
        Returns:
        validation results list