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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate StringA unique identifier for a repository.private InputLocationField idLocation.private StringThe type of layout this repository uses for locating and storing artifacts - can belegacyordefault.private InputLocationField layoutLocation.private InputLocationField location.private Map<Object, InputLocation> Field locations.private StringHuman readable name of the repository.private InputLocationField nameLocation.private StringThe url of the repository, in the formprotocol://hostname/path.private InputLocationField urlLocation. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()Method clone.booleanMethod equals.getId()Get a unique identifier for a repository.Get the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.getLocation(Object key) Gets the location of the specified field in the input source.getName()Get human readable name of the repository.private InputLocationgetOtherLocation(Object key) getUrl()Get the url of the repository, in the formprotocol://hostname/path.inthashCode()Method hashCode.voidSet a unique identifier for a repository.voidSet the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.voidsetLocation(Object key, InputLocation location) Sets the location of the specified field.voidSet human readable name of the repository.voidsetOtherLocation(Object key, InputLocation location) voidSet the url of the repository, in the formprotocol://hostname/path.toString()Method toString.
-
Field Details
-
id
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. -
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 belegacyordefault. -
locations
Field locations. -
location
Field location. -
idLocation
Field idLocation. -
nameLocation
Field nameLocation. -
urlLocation
Field urlLocation. -
layoutLocation
Field layoutLocation.
-
-
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.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
-
getLocation
Description copied from interface:InputLocationTrackerGets the location of the specified field in the input source.- Specified by:
getLocationin interfaceInputLocationTracker- Parameters:
key- a key object.- Returns:
- InputLocation
-
getName
Get human readable name of the repository.- Returns:
- String
-
setLocation
Description copied from interface:InputLocationTrackerSets the location of the specified field.- Specified by:
setLocationin interfaceInputLocationTracker- Parameters:
key- a key object.location- a location object.
-
setOtherLocation
- Parameters:
key- a key object.location- a location object.
-
getOtherLocation
- Parameters:
key- a key object.- Returns:
- InputLocation
-
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.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.
-
toString
Method toString.
-