com.redhat.red.build.koji.model.json.MavenExtraInfo Maven / Gradle / Ivy
/**
* Copyright (C) 2015 Red Hat, Inc. ([email protected])
*
* 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 com.redhat.red.build.koji.model.json;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.commonjava.atlas.maven.ident.ref.ProjectVersionRef;
import org.commonjava.rwx.anno.DataKey;
import org.commonjava.rwx.anno.StructPart;
import static com.redhat.red.build.koji.model.json.KojiJsonConstants.ARTIFACT_ID;
import static com.redhat.red.build.koji.model.json.KojiJsonConstants.GROUP_ID;
import static com.redhat.red.build.koji.model.json.KojiJsonConstants.VERSION;
/**
* Created by jdcasey on 9/15/16.
*/
@StructPart
public class MavenExtraInfo
{
@JsonProperty( GROUP_ID )
@DataKey( GROUP_ID )
private String groupId;
@JsonProperty( ARTIFACT_ID )
@DataKey( ARTIFACT_ID )
private String artifactId;
@JsonProperty( VERSION )
@DataKey( VERSION )
private String version;
@JsonCreator
public MavenExtraInfo( @JsonProperty( GROUP_ID ) String groupId, @JsonProperty( ARTIFACT_ID ) String artifactId,
@JsonProperty( VERSION ) String version )
{
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
}
public MavenExtraInfo( ProjectVersionRef gav )
{
this.groupId = gav.getGroupId();
this.artifactId = gav.getArtifactId();
this.version = gav.getVersionString();
}
public MavenExtraInfo()
{
}
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;
}
@Override
public boolean equals( Object o )
{
if ( this == o )
{
return true;
}
if ( !( o instanceof MavenExtraInfo ) )
{
return false;
}
MavenExtraInfo that = (MavenExtraInfo) o;
if ( getGroupId() != null ? !getGroupId().equals( that.getGroupId() ) : that.getGroupId() != null )
{
return false;
}
if ( getArtifactId() != null ? !getArtifactId().equals( that.getArtifactId() ) : that.getArtifactId() != null )
{
return false;
}
return getVersion() != null ? getVersion().equals( that.getVersion() ) : that.getVersion() == null;
}
@Override
public int hashCode()
{
int result = getGroupId() != null ? getGroupId().hashCode() : 0;
result = 31 * result + ( getArtifactId() != null ? getArtifactId().hashCode() : 0 );
result = 31 * result + ( getVersion() != null ? getVersion().hashCode() : 0 );
return result;
}
@Override
public String toString()
{
return "MavenExtraInfo{" +
"groupId='" + groupId + '\'' +
", artifactId='" + artifactId + '\'' +
", version='" + version + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy