Package org.apache.maven.model.v3_0_0
Class Organization
java.lang.Object
org.apache.maven.model.v3_0_0.Organization
- All Implemented Interfaces:
Serializable
Specifies the organization that produces this project.
- Version:
- $Revision$ $Date$
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetLogo()
Get the URL to the organization's logo image.getName()
Get the full name of the organization.getUrl()
Get the URL to the organization's home page.void
Set the URL to the organization's logo image.void
Set the full name of the organization.void
Set the URL to the organization's home page.
-
Field Details
-
name
The full name of the organization. -
url
The URL to the organization's home page. -
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.
-
-
Constructor Details
-
Organization
public Organization()
-
-
Method Details
-
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
Get the full name of the organization.- Returns:
- String
-
getUrl
Get the URL to the organization's home page.- Returns:
- String
-
setLogo
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
-
-
setName
Set the full name of the organization.- Parameters:
name
-
-
setUrl
Set the URL to the organization's home page.- Parameters:
url
-
-