Package org.ossreviewtoolkit.model
Class ProjectAnalyzerResult
-
- All Implemented Interfaces:
public final class ProjectAnalyzerResultA class that bundles all information generated during an analysis.
-
-
Method Summary
Modifier and Type Method Description final ProjectgetProject()The project that was analyzed. final Set<Package>getPackages()The set of identified packages used by the project. final List<Issue>getIssues()The list of issues that occurred during dependency resolution. -
-
Method Detail
-
getProject
final Project getProject()
The project that was analyzed. The tree of dependencies is implicitly contained in the scopes in the form of package references.
-
getPackages
final Set<Package> getPackages()
The set of identified packages used by the project.
-
getIssues
final List<Issue> getIssues()
The list of issues that occurred during dependency resolution. Defaults to an empty list. This property is not serialized if the list is empty for consistency with the issue properties in other classes, even if this class is not serialized as part of an OrtResult.
-
-
-
-