Class ExecutionConfig


  • public class ExecutionConfig
    extends Object
    Configuration per execution.
    • Constructor Detail

      • ExecutionConfig

        public ExecutionConfig()
    • Method Detail

      • getLocale

        public Locale getLocale()
        Gets the locale to use for formatting messages.
        Returns:
        the locale
      • setLocale

        public void setLocale​(Locale locale)
        Sets the locale to use for formatting messages.
        Parameters:
        locale - the locale
      • getFormatAssertionsEnabled

        public Boolean getFormatAssertionsEnabled()
        Gets the format assertion enabled flag.

        This defaults to null meaning that it will follow the defaults of the specification.

        Since draft 2019-09 this will default to false unless enabled by using the $vocabulary keyword.

        Returns:
        the format assertions enabled flag
      • setFormatAssertionsEnabled

        public void setFormatAssertionsEnabled​(Boolean formatAssertionsEnabled)
        Sets the format assertion enabled flag.
        Parameters:
        formatAssertionsEnabled - the format assertions enabled flag
      • isFailFast

        public boolean isFailFast()
        Return if fast fail is enabled.
        Returns:
        if fast fail is enabled
      • setFailFast

        public void setFailFast​(boolean failFast)
        Sets whether fast fail is enabled.
        Parameters:
        failFast - true to fast fail
      • isAnnotationCollectionEnabled

        public boolean isAnnotationCollectionEnabled()
        Return if annotation collection is enabled.

        This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.

        The annotations to collect can be customized using the annotation collection predicate.

        Returns:
        if annotation collection is enabled
      • setAnnotationCollectionEnabled

        public void setAnnotationCollectionEnabled​(boolean annotationCollectionEnabled)
        Sets whether the annotation collection is enabled.

        This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.

        The annotations to collect can be customized using the annotation collection predicate.

        Parameters:
        annotationCollectionEnabled - true to enable annotation collection
      • getAnnotationCollectionFilter

        public Predicate<String> getAnnotationCollectionFilter()
        Gets the predicate to determine if annotation collection is allowed for a particular keyword. This only has an effect if annotation collection is enabled.

        The default value is to not collect any annotation keywords if annotation collection is enabled.

        This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.

        Returns:
        the predicate to determine if annotation collection is allowed for the keyword
      • setAnnotationCollectionFilter

        public void setAnnotationCollectionFilter​(Predicate<String> annotationCollectionFilter)
        Predicate to determine if annotation collection is allowed for a particular keyword. This only has an effect if annotation collection is enabled.

        The default value is to not collect any annotation keywords if annotation collection is enabled.

        This does not affect annotation collection required for evaluating keywords such as unevaluatedItems or unevaluatedProperties and only affects reporting.

        Parameters:
        annotationCollectionFilter - the predicate accepting the keyword