com.h3xstream.maven.victims.AffectedVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-versions Show documentation
Show all versions of security-versions Show documentation
Maven plugin that identify vulnerable libraries in Maven dependencies
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;
}
}