Package org.apache.maven.model.v3_0_0
Class Organization
- java.lang.Object
-
- org.apache.maven.model.v3_0_0.Organization
-
- All Implemented Interfaces:
java.io.Serializable
public class Organization extends java.lang.Object implements java.io.Serializable
Specifies the organization that produces this project.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Organization()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getLogo()
Get the URL to the organization's logo image.java.lang.String
getName()
Get the full name of the organization.java.lang.String
getUrl()
Get the URL to the organization's home page.void
setLogo(java.lang.String logo)
Set the URL to the organization's logo image.void
setName(java.lang.String name)
Set the full name of the organization.void
setUrl(java.lang.String url)
Set the URL to the organization's home page.
-
-
-
Field Detail
-
name
private java.lang.String name
The full name of the organization.
-
url
private java.lang.String url
The URL to the organization's home page.
-
logo
private java.lang.String logo
The URL to the organization's logo image. This can be an URL relative to the base directory of the generated web site, (e.g.,/images/org-logo.png
) or an absolute URL (e.g.,http://my.corp/logo.png
). This value is used when generating the project documentation.
-
-
Method Detail
-
getLogo
public java.lang.String getLogo()
Get the URL to the organization's logo image. This can be an URL relative to the base directory of the generated web site, (e.g.,/images/org-logo.png
) or an absolute URL (e.g.,http://my.corp/logo.png
). This value is used when generating the project documentation.- Returns:
- String
-
getName
public java.lang.String getName()
Get the full name of the organization.- Returns:
- String
-
getUrl
public java.lang.String getUrl()
Get the URL to the organization's home page.- Returns:
- String
-
setLogo
public void setLogo(java.lang.String logo)
Set the URL to the organization's logo image. This can be an URL relative to the base directory of the generated web site, (e.g.,/images/org-logo.png
) or an absolute URL (e.g.,http://my.corp/logo.png
). This value is used when generating the project documentation.- Parameters:
logo
- a logo object.
-
setName
public void setName(java.lang.String name)
Set the full name of the organization.- Parameters:
name
- a name object.
-
setUrl
public void setUrl(java.lang.String url)
Set the URL to the organization's home page.- Parameters:
url
- a url object.
-
-