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

org.apache.continuum.buildagent.model.LocalRepository Maven / Gradle / Ivy

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

package org.apache.continuum.buildagent.model;

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

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

    /**
     * Field name.
     */
    private String name;

    /**
     * 
     *             The file system location for this repository
     *           .
     */
    private String location;

    /**
     * 
     *             The layout of the repository. Valid values are
     * "default" and "legacy"
     *           .
     */
    private String layout = "default";


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

    /**
     * Get the layout of the repository. Valid values are "default"
     * and "legacy".
     * 
     * @return String
     */
    public String getLayout()
    {
        return this.layout;
    } //-- String getLayout()

    /**
     * Get the file system location for this repository.
     * 
     * @return String
     */
    public String getLocation()
    {
        return this.location;
    } //-- String getLocation()

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

    /**
     * Set the layout of the repository. Valid values are "default"
     * and "legacy".
     * 
     * @param layout
     */
    public void setLayout( String layout )
    {
        this.layout = layout;
    } //-- void setLayout( String )

    /**
     * Set the file system location for this repository.
     * 
     * @param location
     */
    public void setLocation( String location )
    {
        this.location = location;
    } //-- void setLocation( String )

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy