All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.spdx.spdx_to_osv.osvmodel.OsvVulnerabilityResponse Maven / Gradle / Ivy

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