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

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

Go to download

Statistical sampling library for use in virtdata libraries, based on apache commons math 4

There is a newer version: 5.17.0
Show newest version
/*
 =================== 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;

/**
 * Repository contains the information needed for deploying to the
 * remote
 *         repository.
 * 
 * @version $Revision$ $Date$
 */
public class DeploymentRepository
    extends RepositoryBase
    implements java.io.Serializable
{

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

    /**
     * Whether to assign snapshots a unique version comprised of
     * the timestamp and
     *             build number, or to use the same version each
     * time.
     */
    private boolean uniqueVersion = true;


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

    /**
     * Get whether to assign snapshots a unique version comprised
     * of the timestamp and
     *             build number, or to use the same version each
     * time.
     * 
     * @return boolean
     */
    public boolean isUniqueVersion()
    {
        return this.uniqueVersion;
    } //-- boolean isUniqueVersion()

    /**
     * Set whether to assign snapshots a unique version comprised
     * of the timestamp and
     *             build number, or to use the same version each
     * time.
     * 
     * @param uniqueVersion
     */
    public void setUniqueVersion( boolean uniqueVersion )
    {
        this.uniqueVersion = uniqueVersion;
    } //-- void setUniqueVersion( boolean )


            
    /**
     * @see java.lang.Object#equals(java.lang.Object)
     */
    public boolean equals( Object obj )
    {
        return super.equals( obj );
    }
            
          
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy