Class Site

java.lang.Object
org.apache.maven.model.Site
All Implemented Interfaces:
Serializable, Cloneable, InputLocationTracker

public class Site extends Object implements Serializable, Cloneable, InputLocationTracker
Contains the information needed for deploying websites.
Version:
$Revision$ $Date$
See Also:
  • Field Details

    • id

      private String id
      A unique identifier for a deployment location. This is used to match the site to configuration in the settings.xml file, for example.
    • name

      private String name
      Human readable name of the deployment location.
    • url

      private String url
      The url of the location where website is deployed, in the form protocol://hostname/path.
      Default value is: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if site's child.site.url.inherit.append.path="false"
    • childSiteUrlInheritAppendPath

      private String childSiteUrlInheritAppendPath
      When children inherit from distribution management site url, append path or not? Note: While the type of this field is String for technical reasons, the semantic type is actually Boolean
      Default value is: true
      Since: Maven 3.6.1 .
    • locations

      private Map<Object,InputLocation> locations
      Field locations.
    • location

      private InputLocation location
      Field location.
    • idLocation

      private InputLocation idLocation
      Field idLocation.
    • nameLocation

      private InputLocation nameLocation
      Field nameLocation.
    • urlLocation

      private InputLocation urlLocation
      Field urlLocation.
    • childSiteUrlInheritAppendPathLocation

      private InputLocation childSiteUrlInheritAppendPathLocation
      Field childSiteUrlInheritAppendPathLocation.
  • Constructor Details

    • Site

      public Site()
  • Method Details

    • clone

      public Site clone()
      Method clone.
      Overrides:
      clone in class Object
      Returns:
      Site
    • getChildSiteUrlInheritAppendPath

      public String getChildSiteUrlInheritAppendPath()
      Get when children inherit from distribution management site url, append path or not? Note: While the type of this field is String for technical reasons, the semantic type is actually Boolean
      Default value is: true
      Since: Maven 3.6.1.
      Returns:
      String
    • getId

      public String getId()
      Get a unique identifier for a deployment location. This is used to match the site to configuration in the settings.xml file, for example.
      Returns:
      String
    • getLocation

      public InputLocation getLocation(Object key)
      Description copied from interface: InputLocationTracker
      Gets the location of the specified field in the input source.
      Specified by:
      getLocation in interface InputLocationTracker
      Parameters:
      key - a key object.
      Returns:
      InputLocation
    • getName

      public String getName()
      Get human readable name of the deployment location.
      Returns:
      String
    • setLocation

      public void setLocation(Object key, InputLocation location)
      Description copied from interface: InputLocationTracker
      Sets the location of the specified field.
      Specified by:
      setLocation in interface InputLocationTracker
      Parameters:
      key - a key object.
      location - a location object.
    • setOtherLocation

      public void setOtherLocation(Object key, InputLocation location)
      Parameters:
      key - a key object.
      location - a location object.
    • getOtherLocation

      private InputLocation getOtherLocation(Object key)
      Parameters:
      key - a key object.
      Returns:
      InputLocation
    • getUrl

      public String getUrl()
      Get the url of the location where website is deployed, in the form protocol://hostname/path.
      Default value is: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if site's child.site.url.inherit.append.path="false"
      Returns:
      String
    • setChildSiteUrlInheritAppendPath

      public void setChildSiteUrlInheritAppendPath(String childSiteUrlInheritAppendPath)
      Set when children inherit from distribution management site url, append path or not? Note: While the type of this field is String for technical reasons, the semantic type is actually Boolean
      Default value is: true
      Since: Maven 3.6.1.
      Parameters:
      childSiteUrlInheritAppendPath - a childSiteUrlInheritAppendPath object.
    • setId

      public void setId(String id)
      Set a unique identifier for a deployment location. This is used to match the site to configuration in the settings.xml file, for example.
      Parameters:
      id - a id object.
    • setName

      public void setName(String name)
      Set human readable name of the deployment location.
      Parameters:
      name - a name object.
    • setUrl

      public void setUrl(String url)
      Set the url of the location where website is deployed, in the form protocol://hostname/path.
      Default value is: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if site's child.site.url.inherit.append.path="false"
      Parameters:
      url - a url object.
    • isChildSiteUrlInheritAppendPath

      public boolean isChildSiteUrlInheritAppendPath()
    • setChildSiteUrlInheritAppendPath

      public void setChildSiteUrlInheritAppendPath(boolean childSiteUrlInheritAppendPath)