Interface AnalyserResult


  • @ProviderType
    public interface AnalyserResult
    The result returned by the Analyser. A result of an analyser run might contain warnings and or errors.
    • Method Detail

      • getGlobalWarnings

        List<AnalyserResult.GlobalReport> getGlobalWarnings()
        List of global warnings. Warnings can be used to improve the feature.
        Returns:
        A list of warnings, might be empty.
      • getArtifactWarnings

        List<AnalyserResult.ArtifactReport> getArtifactWarnings()
        List of warnings for artifact ids. Warnings can be used to improve the feature.
        Returns:
        A list of warnings, might be empty.
      • getExtensionWarnings

        List<AnalyserResult.ExtensionReport> getExtensionWarnings()
        List of warnings for extension names. Warnings can be used to improve the feature.
        Returns:
        A list of warnings, might be empty.
      • getConfigurationWarnings

        List<AnalyserResult.ConfigurationReport> getConfigurationWarnings()
        List of warnings for configurations. Warnings can be used to improve the feature.
        Returns:
        A list of warnings, might be empty.
        Since:
        1.4.0
      • getGlobalErrors

        List<AnalyserResult.GlobalReport> getGlobalErrors()
        List of global errors. Errors should be fixed in the feature
        Returns:
        A list of error,s might be empty
      • getArtifactErrors

        List<AnalyserResult.ArtifactReport> getArtifactErrors()
        List of errors for artifact ids. Errors should be fixed in the feature.
        Returns:
        A list of errors, might be empty
      • getExtensionErrors

        List<AnalyserResult.ExtensionReport> getExtensionErrors()
        List of errors for extension names. Errors should be fixed in the feature
        Returns:
        A list of errors, might be empty
      • getConfigurationErrors

        List<AnalyserResult.ConfigurationReport> getConfigurationErrors()
        List of errors for configurations. Errors should be fixed in the feature
        Returns:
        A list of errors, might be empty
        Since:
        1.4.0
      • getFeatureDescriptor

        FeatureDescriptor getFeatureDescriptor()
        Return the feature descriptor created during scanning
        Returns:
        The feature descriptor
        Since:
        1.2.0
      • getFrameworkDescriptor

        BundleDescriptor getFrameworkDescriptor()
        Return the framework descriptor created during scanning if available
        Returns:
        The framework descriptor or null.
        Since:
        1.2.0