fix list of consumers

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1179624 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2011-10-06 13:43:07 +00:00
parent d2d067a343
commit a6a448659f
3 changed files with 11 additions and 9 deletions

View File

@ -4,7 +4,7 @@
Maria Odea Ching
Olivier Lamy
------
2011-09-29
2011-10-06
------
~~ Licensed to the Apache Software Foundation (ASF) under one
@ -29,8 +29,8 @@
Understanding Consumers in Apache Archiva
Archiva makes use of the concept of consumers. Consumers are components which consumes or processes an artifact. There are 2 types
of consumers in Archiva: repository content consumers and database consumers.
Archiva makes use of the concept of consumers. Consumers are components which consumes or processes an artifact. There is on type
of consumers in Archiva: repository content consumers.
* Repository Content Consumers
@ -49,8 +49,10 @@ Understanding Consumers in Apache Archiva
* <metadata-updater> - Updates artifact metadata files depending on the content of the repository.
* <repository-purge> - Removes old snapshots from the repository either by the number of days old or by the retention count.
* <update-db-artifact> - Adds the artifact (in the form of ArchivaArtifact) to the database.
* <validate-checksums> - Validates the checksum files of the artifact.
* <validate-checksums> - Validates the checksum files of the artifact.
* <create-archiva-metadata> - Take an artifact off of disk and put it into the metadata repository.
* <duplicate-artifacts> - Search the artifact repository of known SHA1 Checksums for potential duplicate artifacts.

View File

@ -46,7 +46,7 @@ import java.util.List;
*
* @version $Id$
*/
@Service( "knownRepositoryContentConsumer#validate-checksum" )
@Service( "knownRepositoryContentConsumer#validate-checksums" )
@Scope( "prototype" )
public class ValidateChecksumConsumer
extends AbstractMonitoredConsumer

View File

@ -54,7 +54,7 @@ import java.util.Date;
import java.util.List;
/**
* Search the database of known SHA1 Checksums for potential duplicate artifacts.
* Search the artifact repository of known SHA1 Checksums for potential duplicate artifacts.
* <p/>
* TODO: no need for this to be a scanner - we can just query the database / content repository to get a full list
*