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 SummaryConstructors
- 
Method SummaryModifier 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.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.
- 
Constructor Details- 
RepositoryBasepublic RepositoryBase()
 
- 
- 
Method Details- 
cloneMethod clone.
- 
equalsMethod equals.
- 
getIdGet 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
 
- 
getLayoutGet the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.- Returns:
- String
 
- 
getLocationDescription copied from interface:InputLocationTrackerGets the location of the specified field in the input source.- Specified by:
- getLocationin interface- InputLocationTracker
- Parameters:
- key- a key object.
- Returns:
- InputLocation
 
- 
getNameGet human readable name of the repository.- Returns:
- String
 
- 
setLocationDescription copied from interface:InputLocationTrackerSets the location of the specified field.- Specified by:
- setLocationin interface- InputLocationTracker
- Parameters:
- key- a key object.
- location- a location object.
 
- 
setOtherLocation- Parameters:
- key- a key object.
- location- a location object.
 
- 
getUrlGet the url of the repository, in the formprotocol://hostname/path.- Returns:
- String
 
- 
hashCodepublic int hashCode()Method hashCode.
- 
setIdSet 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.
 
- 
setLayoutSet the type of layout this repository uses for locating and storing artifacts - can belegacyordefault.- Parameters:
- layout- a layout object.
 
- 
setNameSet human readable name of the repository.- Parameters:
- name- a name object.
 
- 
setUrlSet the url of the repository, in the formprotocol://hostname/path.- Parameters:
- url- a url object.
 
- 
toStringMethod toString.
 
-