org.apache.maven.model.License 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;
/**
* 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$
*/
public class License
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The full legal name of the license.
*/
private String name;
/**
* The official url for the license text.
*/
private String url;
/**
*
*
* 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.
*
*
*
*/
private String distribution;
/**
* Addendum information pertaining to this license.
*/
private String comments;
//-----------/
//- Methods -/
//-----------/
/**
* Get addendum information pertaining to this license.
*
* @return String
*/
public String getComments()
{
return this.comments;
} //-- String getComments()
/**
* 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.
*
*
* @return String
*/
public String getDistribution()
{
return this.distribution;
} //-- String getDistribution()
/**
* Get the full legal name of the license.
*
* @return String
*/
public String getName()
{
return this.name;
} //-- String getName()
/**
* Get the official url for the license text.
*
* @return String
*/
public String getUrl()
{
return this.url;
} //-- String getUrl()
/**
* Set addendum information pertaining to this license.
*
* @param comments
*/
public void setComments( String comments )
{
this.comments = comments;
} //-- void setComments( String )
/**
* 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.
*
*
* @param distribution
*/
public void setDistribution( String distribution )
{
this.distribution = distribution;
} //-- void setDistribution( String )
/**
* Set the full legal name of the license.
*
* @param name
*/
public void setName( String name )
{
this.name = name;
} //-- void setName( String )
/**
* Set the official url for the license text.
*
* @param url
*/
public void setUrl( String url )
{
this.url = url;
} //-- void setUrl( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy