add javadoc

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1354119 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-06-26 17:24:52 +00:00
parent 035a4704d5
commit 9c6b8dba00
1 changed files with 7 additions and 0 deletions

View File

@ -79,6 +79,13 @@ public interface MetadataRepository
void removeArtifact( String repositoryId, String namespace, String project, String version, String id )
throws MetadataRepositoryException;
/**
* used for deleting timestamped version of SNAPSHOT artifacts
* @param artifactMetadata the artifactMetadata with the timestamped version (2.0-20120618.214135-2)
* @param baseVersion the base version of the snapshot (2.0-SNAPSHOT)
* @throws MetadataRepositoryException
* @since 1.4-M3
*/
void removeArtifact( ArtifactMetadata artifactMetadata, String baseVersion )
throws MetadataRepositoryException;