org.apache.archiva.model.VersionedReference Maven / Gradle / Ivy
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.7,
// any modifications will be overwritten.
// ==============================================================
package org.apache.archiva.model;
/**
* A reference to another Versioned Project.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class VersionedReference
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
*
* The Group ID of the repository content.
*
*/
private String groupId;
/**
*
* The Artifact ID of the repository content.
*
*/
private String artifactId;
/**
*
* The version of the repository content.
*
*/
private String version;
//-----------/
//- Methods -/
//-----------/
/**
* Get the Artifact ID of the repository content.
*
* @return String
*/
public String getArtifactId()
{
return this.artifactId;
} //-- String getArtifactId()
/**
* Get the Group ID of the repository content.
*
* @return String
*/
public String getGroupId()
{
return this.groupId;
} //-- String getGroupId()
/**
* Get the version of the repository content.
*
* @return String
*/
public String getVersion()
{
return this.version;
} //-- String getVersion()
/**
* Set the Artifact ID of the repository content.
*
* @param artifactId
*/
public void setArtifactId( String artifactId )
{
this.artifactId = artifactId;
} //-- void setArtifactId( String )
/**
* Set the Group ID of the repository content.
*
* @param groupId
*/
public void setGroupId( String groupId )
{
this.groupId = groupId;
} //-- void setGroupId( String )
/**
* Set the version of the repository content.
*
* @param version
*/
public void setVersion( String version )
{
this.version = version;
} //-- void setVersion( String )
private static final long serialVersionUID = -6990353165677563113L;
private static String defaultString( String value )
{
if ( value == null )
{
return "";
}
return value.trim();
}
public static String toKey( VersionedReference reference )
{
StringBuilder key = new StringBuilder();
key.append( defaultString( reference.getGroupId() ) ).append( ":" );
key.append( defaultString( reference.getArtifactId() ) ).append( ":" );
key.append( defaultString( reference.getVersion() ) );
return key.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy