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

org.apache.archiva.model.SnapshotVersion Maven / Gradle / Ivy

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

package org.apache.archiva.model;

/**
 * The Snapshot Version.
 * 
 * @version $Revision$ $Date$
 */
@SuppressWarnings( "all" )
public class SnapshotVersion
    implements java.io.Serializable
{

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

    /**
     * 
     *             The unique timestamp for the snapshot version.
     *           
     */
    private String timestamp;

    /**
     * The incremental build number of the snapshot.
     */
    private int buildNumber = 0;


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

    /**
     * Get the incremental build number of the snapshot.
     * 
     * @return int
     */
    public int getBuildNumber()
    {
        return this.buildNumber;
    } //-- int getBuildNumber()

    /**
     * Get the unique timestamp for the snapshot version.
     * 
     * @return String
     */
    public String getTimestamp()
    {
        return this.timestamp;
    } //-- String getTimestamp()

    /**
     * Set the incremental build number of the snapshot.
     * 
     * @param buildNumber
     */
    public void setBuildNumber( int buildNumber )
    {
        this.buildNumber = buildNumber;
    } //-- void setBuildNumber( int )

    /**
     * Set the unique timestamp for the snapshot version.
     * 
     * @param timestamp
     */
    public void setTimestamp( String timestamp )
    {
        this.timestamp = timestamp;
    } //-- void setTimestamp( String )

    
    private static final long serialVersionUID = -1251466956496493405L;
          
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy