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

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

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

import java.util.List;

public class JsVulnerability {
    private final String atOrAbove;
    private final String below;
    private final List info;

    public JsVulnerability(String atOrAbove,String below,List info) {
        this.atOrAbove = atOrAbove;
        this.below = below;
        this.info = info;
    }

    public String getAtOrAbove() {
        return atOrAbove;
    }

    public String getBelow() {
        return below;
    }

    public List getInfo() {
        return info;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy