Package org.apache.maven.model
Class Site
- java.lang.Object
-
- org.apache.maven.model.Site
-
- All Implemented Interfaces:
java.io.Serializable
public class Site extends java.lang.Object implements java.io.SerializableContains the information needed for deploying websites.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Site()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Get a unique identifier for a deployment location.java.lang.StringgetName()Get human readable name of the deployment location.java.lang.StringgetUrl()Get the url of the location where website is deployed, in the formprotocol://hostname/path.voidsetId(java.lang.String id)Set a unique identifier for a deployment location.voidsetName(java.lang.String name)Set human readable name of the deployment location.voidsetUrl(java.lang.String url)Set the url of the location where website is deployed, in the formprotocol://hostname/path.
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Get a unique identifier for a deployment location. This is used to match the site to configuration in thesettings.xmlfile, for example.- Returns:
- String
-
getName
public java.lang.String getName()
Get human readable name of the deployment location.- Returns:
- String
-
getUrl
public java.lang.String getUrl()
Get the url of the location where website is deployed, in the formprotocol://hostname/path.- Returns:
- String
-
setId
public void setId(java.lang.String id)
Set a unique identifier for a deployment location. This is used to match the site to configuration in thesettings.xmlfile, for example.- Parameters:
id- a id object.
-
setName
public void setName(java.lang.String name)
Set human readable name of the deployment location.- Parameters:
name- a name object.
-
setUrl
public void setUrl(java.lang.String url)
Set the url of the location where website is deployed, in the formprotocol://hostname/path.- Parameters:
url- a url object.
-
-