aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/archiva-base/archiva-repository-layer
diff options
context:
space:
mode:
authorskygo <skygo@unknown>2014-02-25 02:01:14 +0000
committerskygo <skygo@unknown>2014-02-25 02:01:14 +0000
commit764c9d64245b90cddef47289467a623ec0dac9e4 (patch)
tree2dfadf5fb667d57542a184593f34f946f5cc7d4d /archiva-modules/archiva-base/archiva-repository-layer
parent0b3773952c9ea2edda2d90fab37392068500a0b9 (diff)
downloadarchiva-764c9d64245b90cddef47289467a623ec0dac9e4.tar.gz
archiva-764c9d64245b90cddef47289467a623ec0dac9e4.zip
fix javadoc. Generation possible on jdk8
(fix html content + replace @todo with TODO ) git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1571532 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-base/archiva-repository-layer')
-rw-r--r--archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/ManagedRepositoryContent.java6
-rw-r--r--archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/RemoteRepositoryContent.java2
-rw-r--r--archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/content/ArtifactClassifierMapping.java2
-rw-r--r--archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/metadata/MetadataTools.java4
4 files changed, 4 insertions, 10 deletions
diff --git a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/ManagedRepositoryContent.java b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/ManagedRepositoryContent.java
index e6adebb78..13d75edc8 100644
--- a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/ManagedRepositoryContent.java
+++ b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/ManagedRepositoryContent.java
@@ -75,7 +75,6 @@ public interface ManagedRepositoryContent
* <p>
* Convenience method to get the repository id.
* </p>
- * <p/>
* <p>
* Equivalent to calling <code>.getRepository().getId()</code>
* </p>
@@ -90,7 +89,6 @@ public interface ManagedRepositoryContent
* This typically inclues the pom files, and those things with
* classifiers (such as doc, source code, test libs, etc...)
* </p>
- * <p/>
* <p>
* <strong>NOTE:</strong> Some layouts (such as maven 1 "legacy") are not compatible with this query.
* </p>
@@ -98,7 +96,6 @@ public interface ManagedRepositoryContent
* @param reference the reference to work off of.
* @return the set of ArtifactReferences for related artifacts.
* @throws ContentNotFoundException if the initial artifact reference does not exist within the repository.
- * @throws LayoutException
*/
Set<ArtifactReference> getRelatedArtifacts( ArtifactReference reference )
throws ContentNotFoundException;
@@ -107,7 +104,6 @@ public interface ManagedRepositoryContent
* <p>
* Convenience method to get the repository (on disk) root directory.
* </p>
- * <p/>
* <p>
* Equivalent to calling <code>.getRepository().getLocation()</code>
* </p>
@@ -141,7 +137,6 @@ public interface ManagedRepositoryContent
* Given a specific {@link VersionedReference}, return the list of available versions for that
* versioned reference.
* </p>
- * <p/>
* <p>
* <strong>NOTE:</strong> This is really only useful when working with SNAPSHOTs.
* </p>
@@ -149,7 +144,6 @@ public interface ManagedRepositoryContent
* @param reference the versioned reference to work off of.
* @return the set of versions found.
* @throws ContentNotFoundException if the versioned reference does not exist within the repository.
- * @throws LayoutException
*/
Set<String> getVersions( VersionedReference reference )
throws ContentNotFoundException;
diff --git a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/RemoteRepositoryContent.java b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/RemoteRepositoryContent.java
index 7bbe28c0d..b4d77093a 100644
--- a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/RemoteRepositoryContent.java
+++ b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/RemoteRepositoryContent.java
@@ -75,7 +75,7 @@ public interface RemoteRepositoryContent
void setRepository( RemoteRepository repo );
/**
- * Given a repository relative path to a filename, return the {@link VersionedReference} object suitable for the path.
+ * Given a repository relative path to a filename, return the {@link org.apache.archiva.model.VersionedReference} object suitable for the path.
*
* @param path the path relative to the repository base dir for the artifact.
* @return the {@link ArtifactReference} representing the path. (or null if path cannot be converted to
diff --git a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/content/ArtifactClassifierMapping.java b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/content/ArtifactClassifierMapping.java
index e00cf9ab0..5d2137703 100644
--- a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/content/ArtifactClassifierMapping.java
+++ b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/content/ArtifactClassifierMapping.java
@@ -25,7 +25,7 @@ import java.util.Map;
/**
* Maven 1.x request type to classifier mapping for translating to a Maven 2.x storage
*
- * @todo reuse mappings for other repositories
+ * TODO reuse mappings for other repositories
*
* @since 1.1
*/
diff --git a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/metadata/MetadataTools.java b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/metadata/MetadataTools.java
index 157aeaad3..656076ecf 100644
--- a/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/metadata/MetadataTools.java
+++ b/archiva-modules/archiva-base/archiva-repository-layer/src/main/java/org/apache/archiva/repository/metadata/MetadataTools.java
@@ -547,7 +547,7 @@ public class MetadataTools
* based off of information present in the repository,
* the maven-metadata.xml files, and the proxy/repository specific
* metadata file contents.
- * <p/>
+ * <p>
* We must treat this as a group or a project metadata file as there is no way to know in advance
*
* @param managedRepository the managed repository where the metadata is kept.
@@ -754,7 +754,7 @@ public class MetadataTools
/**
* Update the metadata based on the following rules.
- * <p/>
+ * <p>
* 1) If this is a SNAPSHOT reference, then utilize the proxy/repository specific
* metadata files to represent the current / latest SNAPSHOT available.
* 2) If this is a RELEASE reference, and the metadata file does not exist, then