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

com.h3xstream.maven.victims.AffectedVersion Maven / Gradle / Ivy

The newest version!
package com.h3xstream.maven.victims;


import java.util.List;

public class AffectedVersion {

    private String fullArtifactId;

    private List lowerThan;

    public AffectedVersion(String fullArtifactId, List lowerThan) {
        this.fullArtifactId = fullArtifactId;
        this.lowerThan = lowerThan;
    }

    public String getFullArtifactId() {
        return fullArtifactId;
    }

    public void setFullArtifactId(String fullArtifactId) {
        this.fullArtifactId = fullArtifactId;
    }

    public List getLowerThan() {
        return lowerThan;
    }

    public void setLowerThan(List lowerThan) {
        this.lowerThan = lowerThan;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy