org.apache.maven.model.Repository Maven / Gradle / Ivy
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 2.1.2,
// any modifications will be overwritten.
// ==============================================================
package org.apache.maven.model;
/**
* A repository contains the information needed for establishing
* connections with
* remote repository.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class Repository
extends RepositoryBase
implements java.io.Serializable, java.lang.Cloneable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* How to handle downloading of releases from this repository.
*/
private RepositoryPolicy releases;
/**
* How to handle downloading of snapshots from this repository.
*/
private RepositoryPolicy snapshots;
//-----------/
//- Methods -/
//-----------/
/**
* Method clone.
*
* @return Repository
*/
public Repository clone()
{
try
{
Repository copy = (Repository) super.clone();
if ( this.releases != null )
{
copy.releases = (RepositoryPolicy) this.releases.clone();
}
if ( this.snapshots != null )
{
copy.snapshots = (RepositoryPolicy) this.snapshots.clone();
}
return copy;
}
catch ( java.lang.Exception ex )
{
throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
+ " does not support clone()" ).initCause( ex );
}
} //-- Repository clone()
/**
* Get how to handle downloading of releases from this
* repository.
*
* @return RepositoryPolicy
*/
public RepositoryPolicy getReleases()
{
return this.releases;
} //-- RepositoryPolicy getReleases()
/**
* Get how to handle downloading of snapshots from this
* repository.
*
* @return RepositoryPolicy
*/
public RepositoryPolicy getSnapshots()
{
return this.snapshots;
} //-- RepositoryPolicy getSnapshots()
/**
* Set how to handle downloading of releases from this
* repository.
*
* @param releases a releases object.
*/
public void setReleases( RepositoryPolicy releases )
{
this.releases = releases;
} //-- void setReleases( RepositoryPolicy )
/**
* Set how to handle downloading of snapshots from this
* repository.
*
* @param snapshots a snapshots object.
*/
public void setSnapshots( RepositoryPolicy snapshots )
{
this.snapshots = snapshots;
} //-- void setSnapshots( RepositoryPolicy )
}