org.apache.maven.model.Organization 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;
/**
* Specifies the organization that produces this project.
*
* @version $Revision$ $Date$
*/
public class Organization
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The full name of the organization.
*/
private String name;
/**
* The URL to the organization's home page.
*/
private String url;
//-----------/
//- Methods -/
//-----------/
/**
* Get the full name of the organization.
*
* @return String
*/
public String getName()
{
return this.name;
} //-- String getName()
/**
* Get the URL to the organization's home page.
*
* @return String
*/
public String getUrl()
{
return this.url;
} //-- String getUrl()
/**
* Set the full name of the organization.
*
* @param name
*/
public void setName( String name )
{
this.name = name;
} //-- void setName( String )
/**
* Set the URL to the organization's home page.
*
* @param url
*/
public void setUrl( String url )
{
this.url = url;
} //-- void setUrl( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy