Package org.apache.maven.model
Class RepositoryBase
java.lang.Object
org.apache.maven.model.RepositoryBase
- All Implemented Interfaces:
Serializable
,Cloneable
,InputLocationTracker
- Direct Known Subclasses:
Repository
A repository contains the information needed for establishing
connections with
remote repository.
- Version:
- $Revision$ $Date$
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Method clone.boolean
Method equals.getId()
Get a unique identifier for a repository.Get the type of layout this repository uses for locating and storing artifacts - can belegacy
ordefault
.getLocation
(Object key) Gets the location of the specified field in the input source.getName()
Get human readable name of the repository.getUrl()
Get the url of the repository, in the formprotocol://hostname/path
.int
hashCode()
Method hashCode.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
setLocation
(Object key, InputLocation location) Sets the location of the specified field.void
Set human readable name of the repository.void
setOtherLocation
(Object key, InputLocation location) void
Set the url of the repository, in the formprotocol://hostname/path
.toString()
Method toString.
-
Constructor Details
-
RepositoryBase
public RepositoryBase()
-
-
Method Details
-
clone
Method clone. -
equals
Method equals. -
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
-
getLocation
Description copied from interface:InputLocationTracker
Gets the location of the specified field in the input source.- Specified by:
getLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.- Returns:
- InputLocation
-
getName
Get human readable name of the repository.- Returns:
- String
-
setLocation
Description copied from interface:InputLocationTracker
Sets the location of the specified field.- Specified by:
setLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.location
- a location object.
-
setOtherLocation
- Parameters:
key
- a key object.location
- a location object.
-
getUrl
Get the url of the repository, in the formprotocol://hostname/path
.- Returns:
- String
-
hashCode
public int hashCode()Method hashCode. -
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.
-
toString
Method toString.
-