added @since info on methods and classes used by mirror injection

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1335785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Herve Boutemy 2012-05-08 21:46:14 +00:00
parent efbbaf668e
commit 691e4af5cf
2 changed files with 9 additions and 0 deletions

View File

@ -97,7 +97,15 @@ public interface ArtifactRepository
void setProxy( Proxy proxy );
Proxy getProxy();
/**
* @since 3.0.3
* @return the repositories mirrored by the actual one
*/
List<ArtifactRepository> getMirroredRepositories();
/**
* @since 3.0.3
* @param mirroredRepositories the repositories that the actual one mirrors
*/
void setMirroredRepositories( List<ArtifactRepository> mirroredRepositories );
}

View File

@ -38,6 +38,7 @@ import org.sonatype.aether.RepositorySystemSession;
/**
* @author Jason van Zyl
* @since 3.0-alpha
*/
public interface RepositorySystem
{