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 Summary
Constructors Constructor Description AnalyzeResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
bannedImportsFound()
Returns whether at least one banned import has been found within the analyzed compile OR test source files.boolean
bannedImportsInCompileCode()
Returns whether at least one banned import has been found within the analyzed compile source code.boolean
bannedImportsInTestCode()
Returns whether at least one banned import has been found within the analyzed test source code.List<BannedImportRecords>
srcBanMatches()
List<BannedImportRecords>
testBanMatches()
-
-
-
Method Detail
-
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.
-
-