org.apache.maven.settings.Repository Maven / Gradle / Ivy
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 2.4.0,
// any modifications will be overwritten.
// ==============================================================
package org.apache.maven.settings;
/**
*
* 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 )
/**
* @see org.apache.maven.settings.RepositoryBase#equals(java.lang.Object)
*/
public boolean equals( Object obj )
{
return super.equals( obj );
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy