org.apache.maven.model.Site Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
=================== 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;
/**
* Contains the information needed for deploying websites.
*
* @version $Revision$ $Date$
*/
public class Site
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
*
*
* A unique identifier for a deployment location.
* This is used to match the
* site to configuration in the
* settings.xml
file, for example.
*
*
*/
private String id;
/**
* Human readable name of the deployment location.
*/
private String name;
/**
*
*
* The url of the location where website is
* deployed, in the form protocol://hostname/path
.
*
*
*/
private String url;
//-----------/
//- Methods -/
//-----------/
/**
* Get a unique identifier for a deployment location. This is
* used to match the
* site to configuration in the
* settings.xml
file, for example.
*
* @return String
*/
public String getId()
{
return this.id;
} //-- String getId()
/**
* Get human readable name of the deployment location.
*
* @return String
*/
public String getName()
{
return this.name;
} //-- String getName()
/**
* Get the url of the location where website is deployed, in
* the form protocol://hostname/path
.
*
* @return String
*/
public String getUrl()
{
return this.url;
} //-- String getUrl()
/**
* Set a unique identifier for a deployment location. This is
* used to match the
* site to configuration in the
* settings.xml
file, for example.
*
* @param id
*/
public void setId( String id )
{
this.id = id;
} //-- void setId( String )
/**
* Set human readable name of the deployment location.
*
* @param name
*/
public void setName( String name )
{
this.name = name;
} //-- void setName( String )
/**
* Set the url of the location where website is deployed, in
* the form protocol://hostname/path
.
*
* @param url
*/
public void setUrl( String url )
{
this.url = url;
} //-- void setUrl( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy