Package org.apache.maven.model
Class RepositoryBase
java.lang.Object
org.apache.maven.model.RepositoryBase
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DeploymentRepository,Repository
A repository contains the information needed for establishing
connections with
remote repository.
- Version:
- $Revision$ $Date$
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleangetId()Get a unique identifier for a repository.Get the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.getName()Get human readable name of the repository.getUrl()Get the url of the repository, in the formprotocol://hostname/path.voidSet a unique identifier for a repository.voidSet the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.voidSet human readable name of the repository.voidSet the url of the repository, in the formprotocol://hostname/path.
-
Constructor Details
-
RepositoryBase
public RepositoryBase()
-
-
Method Details
-
getId
Get a unique identifier for a repository. This is used to match the repository to configuration in thesettings.xmlfile, for example. Furthermore, the identifier is used during POM inheritance and profile injection to detect repositories that should be merged.- Returns:
- String
-
getLayout
Get the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.- Returns:
- String
-
getName
Get human readable name of the repository.- Returns:
- String
-
getUrl
Get the url of the repository, in the formprotocol://hostname/path.- Returns:
- String
-
setId
Set a unique identifier for a repository. This is used to match the repository to configuration in thesettings.xmlfile, for example. Furthermore, the identifier is used during POM inheritance and profile injection to detect repositories that should be merged.- Parameters:
id- a id object.
-
setLayout
Set the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.- Parameters:
layout- a layout object.
-
setName
Set human readable name of the repository.- Parameters:
name- a name object.
-
setUrl
Set the url of the repository, in the formprotocol://hostname/path.- Parameters:
url- a url object.
-
equals
-