com.updateimpact.report.DependencyId Maven / Gradle / Ivy
package com.updateimpact.report;
public class DependencyId {
private final String groupId;
private final String artifactId;
private final String version;
private final String type;
private final String classifier;
public DependencyId(String groupId, String artifactId, String version, String type, String classifier) {
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
this.type = type;
this.classifier = classifier;
}
public String getGroupId() {
return groupId;
}
public String getArtifactId() {
return artifactId;
}
public String getVersion() {
return version;
}
public String getType() {
return type;
}
public String getClassifier() {
return classifier;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DependencyId that = (DependencyId) o;
if (groupId != null ? !groupId.equals(that.groupId) : that.groupId != null) return false;
if (artifactId != null ? !artifactId.equals(that.artifactId) : that.artifactId != null) return false;
if (version != null ? !version.equals(that.version) : that.version != null) return false;
if (type != null ? !type.equals(that.type) : that.type != null) return false;
if (classifier != null ? !classifier.equals(that.classifier) : that.classifier != null) return false;
return true;
}
@Override
public int hashCode() {
int result = groupId != null ? groupId.hashCode() : 0;
result = 31 * result + (artifactId != null ? artifactId.hashCode() : 0);
result = 31 * result + (version != null ? version.hashCode() : 0);
result = 31 * result + (type != null ? type.hashCode() : 0);
result = 31 * result + (classifier != null ? classifier.hashCode() : 0);
return result;
}
}