]> source.dussan.org Git - archiva.git/commitdiff
add some FIXME but not for this release :-)
authorOlivier Lamy <olamy@apache.org>
Wed, 24 Apr 2013 12:00:12 +0000 (12:00 +0000)
committerOlivier Lamy <olamy@apache.org>
Wed, 24 Apr 2013 12:00:12 +0000 (12:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1471376 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/src/main/java/org/apache/archiva/consumers/core/repository/RepositoryPurgeConsumer.java
archiva-modules/archiva-base/archiva-consumers/archiva-metadata-consumer/src/main/java/org/apache/archiva/consumers/metadata/ArchivaMetadataCreationConsumer.java
archiva-modules/archiva-base/archiva-repository-admin/archiva-repository-admin-default/src/main/java/org/apache/archiva/admin/repository/managed/DefaultManagedRepositoryAdmin.java
archiva-modules/archiva-scheduler/archiva-scheduler-repository/src/main/java/org/apache/archiva/scheduler/repository/ArchivaRepositoryScanningTaskExecutor.java
archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/main/java/org/apache/archiva/rest/services/AbstractRestService.java
archiva-modules/archiva-web/archiva-web-common/src/main/java/org/apache/archiva/web/rss/RssFeedServlet.java
archiva-modules/plugins/audit/src/main/java/org/apache/archiva/audit/MetadataAuditListener.java
archiva-modules/plugins/problem-reports/src/main/java/org/apache/archiva/reports/consumers/DuplicateArtifactsConsumer.java

index 79d6efb2241bec37ea7fea4aa434773dc6a831f3..33fd3ee0d87ea01abe0bfd6e39f6fda8fc7d1d8a 100644 (file)
@@ -113,7 +113,7 @@ public class RepositoryPurgeConsumer
     private List<RepositoryListener> listeners = Collections.emptyList();
 
     /**
-     * TODO: this could be multiple implementations and needs to be configured.
+     * FIXME: this could be multiple implementations and needs to be configured.
      */
     @Inject
     private RepositorySessionFactory repositorySessionFactory;
index 0127bafdd9619eab1642c11f8eb426145a134f5f..d7a585ff841d73fd3fee12a3540cef36d3b489ba 100644 (file)
@@ -87,7 +87,7 @@ public class ArchivaMetadataCreationConsumer
     private List<String> includes = new ArrayList<String>( 0 );
 
     /**
-     * FIXME: can be of other types
+     * FIXME: this could be multiple implementations and needs to be configured.
      */
     @Inject
     private RepositorySessionFactory repositorySessionFactory;
index 9ba99d7bf2c348f0045e2444c2e480a952ed063f..f3c62a02319468126e8174f40958fc30e16c5817 100644 (file)
@@ -84,6 +84,9 @@ public class DefaultManagedRepositoryAdmin
     @Named( value = "archivaTaskScheduler#repository" )
     private RepositoryArchivaTaskScheduler repositoryTaskScheduler;
 
+    /**
+     * FIXME: this could be multiple implementations and needs to be configured.
+     */
     @Inject
     private RepositorySessionFactory repositorySessionFactory;
 
index 6d1fa1c5520c34c846e6bc5154e620d3df29f139..53cfd5558a7d57b143d5be03d04a31a6978b6f4d 100644 (file)
@@ -84,7 +84,7 @@ public class ArchivaRepositoryScanningTaskExecutor
     private RepositoryStatisticsManager repositoryStatisticsManager;
 
     /**
-     * TODO: may be different implementations
+     * FIXME: this could be multiple implementations and needs to be configured.
      */
     @Inject
     private RepositorySessionFactory repositorySessionFactory;
index 09e1ad2719dde27f3d6ee3d3c7f70e2411977a82..bd19e65b2d9299d4bcbae898df42f4dacabfba7a 100644 (file)
@@ -79,6 +79,9 @@ public abstract class AbstractRestService
     protected UserRepositories userRepositories;
 
 
+    /**
+     * FIXME: this could be multiple implementations and needs to be configured.
+     */
     @Inject
     @Named(value = "repositorySessionFactory")
     protected RepositorySessionFactory repositorySessionFactory;
index d49097a11060729a2b41b2a6533eb59d95624e32..a16388301bde686caf031abc91dbc503b264cfd8 100644 (file)
@@ -87,6 +87,9 @@ public class RssFeedServlet
 
     private HttpAuthenticator httpAuth;
 
+    /**
+     * FIXME: this could be multiple implementations and needs to be configured.
+     */
     private RepositorySessionFactory repositorySessionFactory;
 
     public void init( javax.servlet.ServletConfig servletConfig )
index 1802feb0703efbeb210ddb40a6f3008ab3860df8..cbbb84484fdc62c26df0d791970843b28db0de06 100644 (file)
@@ -44,10 +44,8 @@ public class MetadataAuditListener
     private AuditManager auditManager;
 
     /**
-     * FIXME: this could be multiple implementations and needs to be configured. It also starts a separate session to
-     * the originator of the audit event that we may rather want to pass through.
-     *
-     *
+     * FIXME: this could be multiple implementations and needs to be configured.
+     *  It also starts a separate session to the originator of the audit event that we may rather want to pass through.
      */
     @Inject
     private RepositorySessionFactory repositorySessionFactory;
index a2ceb97642f656a43804c7c52d2cd1857f17ba67..c1007aca9009c3faf1aa93a078f2db35c0d2db5a 100644 (file)
@@ -66,30 +66,18 @@ public class DuplicateArtifactsConsumer
 {
     private Logger log = LoggerFactory.getLogger( DuplicateArtifactsConsumer.class );
 
-    /**
-     * default-value="duplicate-artifacts"
-     */
     private String id = "duplicate-artifacts";
 
-    /**
-     * default-value="Check for Duplicate Artifacts via SHA1 Checksums"
-     */
     private String description = "Check for Duplicate Artifacts via SHA1 Checksums";
 
-    /**
-     *
-     */
     @Inject
     private ArchivaConfiguration configuration;
 
-    /**
-     *
-     */
     @Inject
     private FileTypes filetypes;
 
     /**
-     * FIXME: can be of other types
+     * FIXME: this could be multiple implementations and needs to be configured.
      */
     @Inject
     private RepositorySessionFactory repositorySessionFactory;