org.whitesource.agent.api.model.Coordinates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wss-agent-api Show documentation
Show all versions of wss-agent-api Show documentation
Java bindings for White Source API
/**
* Copyright (C) 2012 White Source Ltd.
*
* 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.
*/
package org.whitesource.agent.api.model;
import org.whitesource.agent.api.APIConstants;
import java.io.Serializable;
/**
* WhiteSource model for artifact's coordinates.
*
* @author tom.shapira
*/
public class Coordinates implements Serializable {
/* --- Static members --- */
private static final long serialVersionUID = 4962222806117752812L;
/* --- Members --- */
private String groupId;
private String artifactId;
private String version;
/* --- Constructors --- */
/**
* Default constructor
*/
public Coordinates() {
}
/**
* Constructor
*
* @param groupId
* @param artifactId
* @param version
*/
public Coordinates(String groupId, String artifactId, String version) {
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
}
/* --- Overridden methods --- */
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("Coordinates@").append(Integer.toHexString(hashCode()))
.append("[")
.append("groupId= ").append(groupId).append(",")
.append("artifactId= ").append(artifactId).append(",")
.append("version= ").append(version)
.append(" ]");
return sb.toString();
}
@Override
public int hashCode() {
int code = APIConstants.HASH_CODE_SEED;
code = APIConstants.HASH_CODE_FACTOR * code + ((groupId == null) ? 0 : groupId.hashCode());
code = APIConstants.HASH_CODE_FACTOR * code + ((artifactId == null) ? 0 : artifactId.hashCode());
code = APIConstants.HASH_CODE_FACTOR * code + ((version == null) ? 0 : version.hashCode());
return code;
}
@Override
public boolean equals(Object obj) {
if (obj == null) { return false; }
if (obj == this) { return true; }
if (obj.getClass() != getClass()) { return false; }
Coordinates other = (Coordinates) obj;
return (groupId == null) ? (other.groupId == null) : groupId.equals(other.groupId)
&& ((artifactId == null) ? (other.artifactId == null) : artifactId.equals(other.artifactId))
&& ((version == null) ? (other.version == null) : version.equals(other.version));
}
/* --- Getters / Setters --- */
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getArtifactId() {
return artifactId;
}
public void setArtifactId(String artifactId) {
this.artifactId = artifactId;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
}