
org.apache.maven.archiva.configuration.OrganisationInformation Maven / Gradle / Ivy
/*
* $Id$
*/
package org.apache.maven.archiva.configuration;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.util.Date;
/**
*
* The organisation information settings.
*
*
* @version $Revision$ $Date$
*/
public class OrganisationInformation
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* name of the organisation.
*/
private String name;
/**
* name of the organisation.
*/
private String url;
/**
* name of the organisation.
*/
private String logoLocation;
//-----------/
//- Methods -/
//-----------/
/**
* Get name of the organisation.
*
* @return String
*/
public String getLogoLocation()
{
return this.logoLocation;
} //-- String getLogoLocation()
/**
* Get name of the organisation.
*
* @return String
*/
public String getName()
{
return this.name;
} //-- String getName()
/**
* Get name of the organisation.
*
* @return String
*/
public String getUrl()
{
return this.url;
} //-- String getUrl()
/**
* Set name of the organisation.
*
* @param logoLocation
*/
public void setLogoLocation( String logoLocation )
{
this.logoLocation = logoLocation;
} //-- void setLogoLocation( String )
/**
* Set name of the organisation.
*
* @param name
*/
public void setName( String name )
{
this.name = name;
} //-- void setName( String )
/**
* Set name of the organisation.
*
* @param url
*/
public void setUrl( String url )
{
this.url = url;
} //-- void setUrl( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy