]> source.dussan.org Git - archiva.git/commitdiff
fix list of consumers
authorOlivier Lamy <olamy@apache.org>
Thu, 6 Oct 2011 13:43:07 +0000 (13:43 +0000)
committerOlivier Lamy <olamy@apache.org>
Thu, 6 Oct 2011 13:43:07 +0000 (13:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1179624 13f79535-47bb-0310-9956-ffa450edef68

archiva-docs/src/site/apt/adminguide/consumers.apt
archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/main/java/org/apache/archiva/consumers/core/ValidateChecksumConsumer.java
archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java

index 9c71a78e9061a1d7e26101770fbe131ea2b2754a..2846296a325d1dd1bdfbbe133f2dccda75c5fb4f 100644 (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.
   
index 3feace0036e771f464575324d4078efc369ae314..208bf95cdc0ca80552cf131c8242c6e49277c4e0 100644 (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
index bbc2faaac4b6c1e8030dbafea4407c5c9ee3be9e..3b4917390a20f50cd525d14c4cf8d11a9d044ed9 100644 (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
  *