org.fedoraproject.xmvn.metadata.SkippedArtifactMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmvn-api Show documentation
Show all versions of xmvn-api Show documentation
This module contains public interface for functionality
implemented by XMvn Core.
The newest version!
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 2.4.0,
// any modifications will be overwritten.
// ==============================================================
package org.fedoraproject.xmvn.metadata;
/**
* Information about artifact which was built, but not installed
* into any package.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class SkippedArtifactMetadata
implements java.io.Serializable, java.lang.Cloneable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Group ID of skipped artifact.
*/
private String groupId;
/**
* Artifact ID of skipped artifact.
*/
private String artifactId;
/**
* Extension of skipped artifact.
*/
private String extension = "jar";
/**
* Classifier of skipped artifact.
*/
private String classifier = "";
//-----------/
//- Methods -/
//-----------/
/**
* Method clone.
*
* @return SkippedArtifactMetadata
*/
public SkippedArtifactMetadata clone()
{
try
{
SkippedArtifactMetadata copy = (SkippedArtifactMetadata) super.clone();
return copy;
}
catch ( java.lang.Exception ex )
{
throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
+ " does not support clone()" ).initCause( ex );
}
} //-- SkippedArtifactMetadata clone()
/**
* Get artifact ID of skipped artifact.
*
* @return String
*/
public String getArtifactId()
{
return this.artifactId;
} //-- String getArtifactId()
/**
* Get classifier of skipped artifact.
*
* @return String
*/
public String getClassifier()
{
return this.classifier;
} //-- String getClassifier()
/**
* Get extension of skipped artifact.
*
* @return String
*/
public String getExtension()
{
return this.extension;
} //-- String getExtension()
/**
* Get group ID of skipped artifact.
*
* @return String
*/
public String getGroupId()
{
return this.groupId;
} //-- String getGroupId()
/**
* Set artifact ID of skipped artifact.
*
* @param artifactId a artifactId object.
*/
public void setArtifactId( String artifactId )
{
this.artifactId = artifactId;
} //-- void setArtifactId( String )
/**
* Set classifier of skipped artifact.
*
* @param classifier a classifier object.
*/
public void setClassifier( String classifier )
{
this.classifier = classifier;
} //-- void setClassifier( String )
/**
* Set extension of skipped artifact.
*
* @param extension a extension object.
*/
public void setExtension( String extension )
{
this.extension = extension;
} //-- void setExtension( String )
/**
* Set group ID of skipped artifact.
*
* @param groupId a groupId object.
*/
public void setGroupId( String groupId )
{
this.groupId = groupId;
} //-- void setGroupId( String )
}