Interface CompatibilityResult


public interface CompatibilityResult
The result of CompatibilityMetadataProvider.isCompatible(Map).

It is composed by the exit code (to help building scripts around this tool as it is easier than parsing logs), and an optional error message.

  • Method Details

    • exitCode

      int exitCode()
      Returns:
      The exit code to use to signal the compatibility result.
    • errorMessage

      default Optional<String> errorMessage()
      Returns:
      An optional error message explaining what caused the incompatibility.
    • endMessage

      default Optional<String> endMessage()
      Returns:
      An optional message after the check is finished.
    • providerCompatible

      static CompatibilityResult providerCompatible(String providerId)
    • incompatibleAttribute

      static CompatibilityResult incompatibleAttribute(String providerId, String attribute, String previousValue, String currentValue)