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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate String
A unique identifier for a repository.private String
The type of layout this repository uses for locating and storing artifacts - can belegacy
ordefault
.private String
Human readable name of the repository.private String
The url of the repository, in the formprotocol://hostname/path
. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
getId()
Get a unique identifier for a repository.Get the type of layout this repository uses for locating and storing artifacts - can belegacy
ordefault
.getName()
Get human readable name of the repository.getUrl()
Get the url of the repository, in the formprotocol://hostname/path
.void
Set a unique identifier for a repository.void
Set the type of layout this repository uses for locating and storing artifacts - can belegacy
ordefault
.void
Set human readable name of the repository.void
Set the url of the repository, in the formprotocol://hostname/path
.
-
Field Details
-
id
A unique identifier for a repository. This is used to match the repository to configuration in thesettings.xml
file, for example. Furthermore, the identifier is used during POM inheritance and profile injection to detect repositories that should be merged. -
name
Human readable name of the repository. -
url
The url of the repository, in the formprotocol://hostname/path
. -
layout
The type of layout this repository uses for locating and storing artifacts - can belegacy
ordefault
.
-
-
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.xml
file, 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 belegacy
ordefault
.- 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.xml
file, 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 belegacy
ordefault
.- 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
-