Package org.apache.maven.model
Class Repository
- java.lang.Object
-
- org.apache.maven.model.RepositoryBase
-
- org.apache.maven.model.Repository
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,InputLocationTracker
- Direct Known Subclasses:
DeploymentRepository
public class Repository extends RepositoryBase implements java.io.Serializable, java.lang.Cloneable
A repository contains the information needed for establishing connections with remote repository.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Repository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Repositoryclone()Method clone.RepositoryPolicygetReleases()Get how to handle downloading of releases from this repository.RepositoryPolicygetSnapshots()Get how to handle downloading of snapshots from this repository.voidsetReleases(RepositoryPolicy releases)Set how to handle downloading of releases from this repository.voidsetSnapshots(RepositoryPolicy snapshots)Set how to handle downloading of snapshots from this repository.-
Methods inherited from class org.apache.maven.model.RepositoryBase
equals, getId, getLayout, getLocation, getName, getUrl, hashCode, setId, setLayout, setLocation, setName, setOtherLocation, setUrl, toString
-
-
-
-
Method Detail
-
clone
public Repository clone()
Method clone.- Overrides:
clonein classRepositoryBase- Returns:
- Repository
-
getReleases
public RepositoryPolicy getReleases()
Get how to handle downloading of releases from this repository.- Returns:
- RepositoryPolicy
-
getSnapshots
public RepositoryPolicy getSnapshots()
Get how to handle downloading of snapshots from this repository.- Returns:
- RepositoryPolicy
-
setReleases
public void setReleases(RepositoryPolicy releases)
Set how to handle downloading of releases from this repository.- Parameters:
releases- a releases object.
-
setSnapshots
public void setSnapshots(RepositoryPolicy snapshots)
Set how to handle downloading of snapshots from this repository.- Parameters:
snapshots- a snapshots object.
-
-