Class Resolutions
-
- All Implemented Interfaces:
public final class ResolutionsResolutions for issues with a repository.
-
-
Field Summary
Fields Modifier and Type Field Description private final List<IssueResolution>issuesprivate final List<RuleViolationResolution>ruleViolationsprivate final List<VulnerabilityResolution>vulnerabilities
-
Constructor Summary
Constructors Constructor Description Resolutions(List<IssueResolution> issues, List<RuleViolationResolution> ruleViolations, List<VulnerabilityResolution> vulnerabilities)
-
Method Summary
Modifier and Type Method Description final List<IssueResolution>getIssues()Resolutions for issues with the analysis or scan of the projects in this repository and their dependencies. final List<RuleViolationResolution>getRuleViolations()Resolutions for license policy violations. final List<VulnerabilityResolution>getVulnerabilities()Resolutions for vulnerabilities provided by the advisor. final Resolutionsmerge(Resolutions other)Merge this Resolutions with other. -
-
Constructor Detail
-
Resolutions
Resolutions(List<IssueResolution> issues, List<RuleViolationResolution> ruleViolations, List<VulnerabilityResolution> vulnerabilities)
-
-
Method Detail
-
getIssues
final List<IssueResolution> getIssues()
Resolutions for issues with the analysis or scan of the projects in this repository and their dependencies.
-
getRuleViolations
final List<RuleViolationResolution> getRuleViolations()
Resolutions for license policy violations.
-
getVulnerabilities
final List<VulnerabilityResolution> getVulnerabilities()
Resolutions for vulnerabilities provided by the advisor.
-
merge
final Resolutions merge(Resolutions other)
Merge this Resolutions with other. Duplicates are removed.
-
-
-
-