All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fedoraproject.xmvn.metadata.DependencyExclusion Maven / Gradle / Ivy

Go to download

This module contains public interface for functionality implemented by XMvn Core.

There is a newer version: 4.3.0
Show newest version
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.9.1,
// any modifications will be overwritten.
// ==============================================================

package org.fedoraproject.xmvn.metadata;

/**
 * Description of artifact excluded from dependency tree.
 * 
 * @version $Revision$ $Date$
 */
@SuppressWarnings( "all" )
public class DependencyExclusion
    implements java.io.Serializable, java.lang.Cloneable
{

      //--------------------------/
     //- Class/Member Variables -/
    //--------------------------/

    /**
     * Group ID of the excluded artifact.
     */
    private String groupId;

    /**
     * Artifact ID of the excluded artifact.
     */
    private String artifactId;


      //-----------/
     //- Methods -/
    //-----------/

    /**
     * Method clone.
     * 
     * @return DependencyExclusion
     */
    public DependencyExclusion clone()
    {
        try
        {
            DependencyExclusion copy = (DependencyExclusion) 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 );
        }
    } //-- DependencyExclusion clone()

    /**
     * Get artifact ID of the excluded artifact.
     * 
     * @return String
     */
    public String getArtifactId()
    {
        return this.artifactId;
    } //-- String getArtifactId()

    /**
     * Get group ID of the excluded artifact.
     * 
     * @return String
     */
    public String getGroupId()
    {
        return this.groupId;
    } //-- String getGroupId()

    /**
     * Set artifact ID of the excluded artifact.
     * 
     * @param artifactId
     */
    public void setArtifactId( String artifactId )
    {
        this.artifactId = artifactId;
    } //-- void setArtifactId( String )

    /**
     * Set group ID of the excluded artifact.
     * 
     * @param groupId
     */
    public void setGroupId( String groupId )
    {
        this.groupId = groupId;
    } //-- void setGroupId( String )

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy