Class AnalyzeResult

java.lang.Object
de.ikor.sip.foundation.mvnplugin.model.AnalyzeResult

public final class AnalyzeResult extends Object
Final result of analyzing the code base for banned imports.
  • Constructor Details

    • AnalyzeResult

      public AnalyzeResult()
  • Method Details

    • srcBanMatches

      public List<BannedImportRecords> srcBanMatches()
      Returns:
      discovered BannedImportGroup in the source code files
    • testBanMatches

      public List<BannedImportRecords> testBanMatches()
      Returns:
      discovered BannedImportGroup in the test code files
    • bannedImportsFound

      public boolean bannedImportsFound()
      Returns whether at least one banned import has been found within the analyzed compile OR test source files.
      Returns:
      Whether a banned import has been found.
    • bannedImportsInCompileCode

      public boolean bannedImportsInCompileCode()
      Returns whether at least one banned import has been found within the analyzed compile source code.
      Returns:
      Whether a banned import has been found.
    • bannedImportsInTestCode

      public boolean bannedImportsInTestCode()
      Returns whether at least one banned import has been found within the analyzed test source code.
      Returns:
      Whether a banned import has been found.