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

org.apache.maven.model.ActivationFile Maven / Gradle / Ivy

/*
 =================== DO NOT EDIT THIS FILE ====================
 Generated by Modello 1.0.1 on 2009-08-06 15:13:09,
 any modifications will be overwritten.
 ==============================================================
 */

package org.apache.maven.model;

/**
 * This is the file specification used to activate the profile. The
 * missing value
 *         will be the location of a file that needs to exist, and
 * if it doesn't the profile will be
 *         activated. On the other hand exists will test for the
 * existence of the file and if it is
 *         there the profile will be activated.
 * 
 * @version $Revision$ $Date$
 */
public class ActivationFile
    implements java.io.Serializable
{

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

    /**
     * The name of the file that must be missing to activate the
     *           profile.
     */
    private String missing;

    /**
     * The name of the file that must exist to activate the profile.
     */
    private String exists;


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

    /**
     * Get the name of the file that must exist to activate the
     * profile.
     * 
     * @return String
     */
    public String getExists()
    {
        return this.exists;
    } //-- String getExists()

    /**
     * Get the name of the file that must be missing to activate
     * the
     *           profile.
     * 
     * @return String
     */
    public String getMissing()
    {
        return this.missing;
    } //-- String getMissing()

    /**
     * Set the name of the file that must exist to activate the
     * profile.
     * 
     * @param exists
     */
    public void setExists( String exists )
    {
        this.exists = exists;
    } //-- void setExists( String )

    /**
     * Set the name of the file that must be missing to activate
     * the
     *           profile.
     * 
     * @param missing
     */
    public void setMissing( String missing )
    {
        this.missing = missing;
    } //-- void setMissing( String )


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy