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

com.h3xstream.retirejs.repo.JsLibrary Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package com.h3xstream.retirejs.repo;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class JsLibrary {

    private String name;
    private final List vulnerabilities;
    private List uris;
    private List filename;
    private Map hashes;
    private List fileContents;
    private List functions;

    public JsLibrary() {
        vulnerabilities = new ArrayList();
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public List getVulnerabilities() {
        return vulnerabilities;
    }


    public List getUris() {
        return uris;
    }

    public void setUris(List uris) {
        this.uris = uris;
    }

    public List getFilename() {
        return filename;
    }

    public void setFilename(List filename) {
        this.filename = filename;
    }

    public Map getHashes() {
        return hashes;
    }

    public void setHashes(Map hashes) {
        this.hashes = hashes;
    }

    public List getFileContents() {
        return fileContents;
    }

    public void setFileContents(List fileContents) {
        this.fileContents = fileContents;
    }

    public List getFunctions() {
        return functions;
    }

    public void setFunctions(List functions) {
        this.functions = functions;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy