Class License

java.lang.Object
org.apache.maven.model.v3_0_0.License
All Implemented Interfaces:
Serializable

public class License extends Object implements Serializable
Describes the licenses for this project. This is used to generate the license page of the project's web site, as well as being taken into consideration in other reporting and validation. The licenses listed for the project are that of the project itself, and not of dependencies.
Version:
$Revision$ $Date$
See Also:
  • Field Details

    • name

      private String name
      The full legal name of the license.
    • url

      private String url
      The official url for the license text.
    • distribution

      private String distribution
      The primary method by which this project may be distributed.
      repo
      may be downloaded from the Maven repository
      manual
      user must manually download and install the dependency.
    • comments

      private String comments
      Addendum information pertaining to this license.
  • Constructor Details

    • License

      public License()
  • Method Details

    • getComments

      public String getComments()
      Get addendum information pertaining to this license.
      Returns:
      String
    • getDistribution

      public String getDistribution()
      Get the primary method by which this project may be distributed.
      repo
      may be downloaded from the Maven repository
      manual
      user must manually download and install the dependency.
      Returns:
      String
    • getName

      public String getName()
      Get the full legal name of the license.
      Returns:
      String
    • getUrl

      public String getUrl()
      Get the official url for the license text.
      Returns:
      String
    • setComments

      public void setComments(String comments)
      Set addendum information pertaining to this license.
      Parameters:
      comments - a comments object.
    • setDistribution

      public void setDistribution(String distribution)
      Set the primary method by which this project may be distributed.
      repo
      may be downloaded from the Maven repository
      manual
      user must manually download and install the dependency.
      Parameters:
      distribution - a distribution object.
    • setName

      public void setName(String name)
      Set the full legal name of the license.
      Parameters:
      name - a name object.
    • setUrl

      public void setUrl(String url)
      Set the official url for the license text.
      Parameters:
      url - a url object.