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

org.apache.maven.plugins.antrun.taskconfig.AttachArtifactConfiguration Maven / Gradle / Ivy

The newest version!
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.11,
// any modifications will be overwritten.
// ==============================================================

package org.apache.maven.plugins.antrun.taskconfig;

/**
 * Class AttachArtifactConfiguration.
 * 
 * @version $Revision$ $Date$
 */
@SuppressWarnings( "all" )
public class AttachArtifactConfiguration
    implements java.io.Serializable
{

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

    /**
     * The file to attach to the project.
     */
    private String _file_placeholder;

    /**
     * A classifier assigned to the artifact.
     */
    private String classifier;

    /**
     * The type of the artifact, zip, war, etc.
     */
    private String type;

    /**
     * Field modelEncoding.
     */
    private String modelEncoding = "UTF-8";


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

    /**
     * Get a classifier assigned to the artifact.
     * 
     * @return String
     */
    public String getClassifier()
    {
        return this.classifier;
    } //-- String getClassifier()

    /**
     * Get the modelEncoding field.
     * 
     * @return String
     */
    public String getModelEncoding()
    {
        return this.modelEncoding;
    } //-- String getModelEncoding()

    /**
     * Get the type of the artifact, zip, war, etc.
     * 
     * @return String
     */
    public String getType()
    {
        return this.type;
    } //-- String getType()

    /**
     * Set a classifier assigned to the artifact.
     * 
     * @param classifier
     */
    public void setClassifier( String classifier )
    {
        this.classifier = classifier;
    } //-- void setClassifier( String )

    /**
     * Set the modelEncoding field.
     * 
     * @param modelEncoding
     */
    public void setModelEncoding( String modelEncoding )
    {
        this.modelEncoding = modelEncoding;
    } //-- void setModelEncoding( String )

    /**
     * Set the type of the artifact, zip, war, etc.
     * 
     * @param type
     */
    public void setType( String type )
    {
        this.type = type;
    } //-- void setType( String )

    
        private java.io.File file;
        
        public java.io.File getFile()
        {
          return this.file;
        }
        
        public void setFile( java.io.File file )
        {
          this.file = file;        
        }
        
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy