org.codehaus.mojo.versions.change.DefaultDependencyVersionChange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of versions-common Show documentation
Show all versions of versions-common Show documentation
Common components for the Versions Maven Plugin
package org.codehaus.mojo.versions.change;
/*
* Copyright MojoHaus and Contributors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.util.Objects;
import org.codehaus.mojo.versions.api.change.DependencyVersionChange;
/**
* Represents a change of an artifact's version.
*
* @author Stephen Connolly
* @since 15-Sep-2010 14:48:10
*/
public final class DefaultDependencyVersionChange implements DependencyVersionChange {
private final String groupId;
private final String artifactId;
private final String oldVersion;
private final String newVersion;
public DefaultDependencyVersionChange(String groupId, String artifactId, String oldVersion, String newVersion) {
this.groupId = groupId;
this.artifactId = artifactId;
this.oldVersion = oldVersion;
this.newVersion = newVersion;
}
public String getGroupId() {
return groupId;
}
public String getArtifactId() {
return artifactId;
}
public String getOldVersion() {
return oldVersion;
}
public String getNewVersion() {
return newVersion;
}
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DefaultDependencyVersionChange versionChange = (DefaultDependencyVersionChange) o;
if (!Objects.equals(artifactId, versionChange.artifactId)) {
return false;
}
if (!Objects.equals(groupId, versionChange.groupId)) {
return false;
}
if (!Objects.equals(newVersion, versionChange.newVersion)) {
return false;
}
return Objects.equals(oldVersion, versionChange.oldVersion);
}
public int hashCode() {
int result = groupId != null ? groupId.hashCode() : 0;
result = 31 * result + (artifactId != null ? artifactId.hashCode() : 0);
result = 31 * result + (oldVersion != null ? oldVersion.hashCode() : 0);
result = 31 * result + (newVersion != null ? newVersion.hashCode() : 0);
return result;
}
public String toString() {
return "DefaultDependencyVersionChange(" + groupId + ':' + artifactId + ":" + oldVersion + "-->" + newVersion
+ ')';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy