org.spdx.spdx_to_osv.osvmodel.OsvVulnerabilityResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spdx-to-osv Show documentation
Show all versions of spdx-to-osv Show documentation
Produces an OSV vulnerability JSON report from an SPDX file
The newest version!
/**
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) 2021 Source Auditor Inc.
*/
package org.spdx.spdx_to_osv.osvmodel;
import java.util.List;
/**
* Object for a response from the OSV-QueryAffected API based on https://osv.dev/docs/#operation/OSV_QueryAffected
*/
public class OsvVulnerabilityResponse {
List vulns = null;
public OsvVulnerabilityResponse() {
// required empty constructor
}
public List getVulns() {
return this.vulns;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy