This project has retired. For details please refer to its Attic page.
ManagedDefaultRepositoryContent

org.apache.maven.archiva.repository.content
Class ManagedDefaultRepositoryContent

Package class diagram package ManagedDefaultRepositoryContent
java.lang.Object
  extended by org.apache.maven.archiva.repository.content.AbstractDefaultRepositoryContent
      extended by org.apache.maven.archiva.repository.content.ManagedDefaultRepositoryContent
All Implemented Interfaces:
ManagedRepositoryContent

public class ManagedDefaultRepositoryContent
extends AbstractDefaultRepositoryContent
implements ManagedRepositoryContent

ManagedDefaultRepositoryContent


Field Summary
 
Fields inherited from class org.apache.maven.archiva.repository.content.AbstractDefaultRepositoryContent
ARTIFACT_SEPARATOR, GROUP_SEPARATOR, log, MAVEN_METADATA, PATH_SEPARATOR
 
Constructor Summary
ManagedDefaultRepositoryContent()
           
 
Method Summary
 void deleteVersion(org.apache.maven.archiva.model.VersionedReference reference)
          Delete from the managed repository all files / directories associated with the provided version reference.
 java.lang.String getId()
           Convenience method to get the repository id.
 java.util.Set<org.apache.maven.archiva.model.ArtifactReference> getRelatedArtifacts(org.apache.maven.archiva.model.ArtifactReference reference)
           Gather up the list of related artifacts to the ArtifactReference provided.
 java.lang.String getRepoRoot()
           Convenience method to get the repository (on disk) root directory.
 org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration getRepository()
          Get the repository configuration associated with this repository content.
 java.util.Set<java.lang.String> getVersions(org.apache.maven.archiva.model.ProjectReference reference)
          Gather the Available Versions (on disk) for a specific Project Reference, based on filesystem information.
 java.util.Set<java.lang.String> getVersions(org.apache.maven.archiva.model.VersionedReference reference)
           Given a specific VersionedReference, return the list of available versions for that versioned reference.
 boolean hasContent(org.apache.maven.archiva.model.ArtifactReference reference)
          Determines if the artifact referenced exists in the repository.
 boolean hasContent(org.apache.maven.archiva.model.ProjectReference reference)
          Determines if the project referenced exists in the repository.
 boolean hasContent(org.apache.maven.archiva.model.VersionedReference reference)
          Determines if the version reference exists in the repository.
 void setFiletypes(FileTypes filetypes)
           
 void setRepository(org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration repository)
          Set the repository configuration to associate with this repository content.
 org.apache.maven.archiva.model.ArtifactReference toArtifactReference(java.lang.String path)
          Convert a path to an artifact reference.
 java.io.File toFile(ArchivaArtifact reference)
          Given an ArchivaArtifact, return the file reference to the artifact.
 java.io.File toFile(org.apache.maven.archiva.model.ArtifactReference reference)
          Given an ArtifactReference, return the file reference to the artifact.
 
Methods inherited from class org.apache.maven.archiva.repository.content.AbstractDefaultRepositoryContent
toMetadataPath, toMetadataPath, toPath, toPath
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.apache.maven.archiva.repository.ManagedRepositoryContent
toMetadataPath, toMetadataPath, toPath, toPath
 

Constructor Detail

ManagedDefaultRepositoryContent

public ManagedDefaultRepositoryContent()
Method Detail

deleteVersion

public void deleteVersion(org.apache.maven.archiva.model.VersionedReference reference)
                   throws ContentNotFoundException
Description copied from interface: ManagedRepositoryContent
Delete from the managed repository all files / directories associated with the provided version reference.

Specified by:
deleteVersion in interface ManagedRepositoryContent
Parameters:
reference - the version reference to delete.
Throws:
ContentNotFoundException

getId

public java.lang.String getId()
Description copied from interface: ManagedRepositoryContent

Convenience method to get the repository id.

Equivalent to calling .getRepository().getId()

Specified by:
getId in interface ManagedRepositoryContent
Returns:
the repository id.

getRelatedArtifacts

public java.util.Set<org.apache.maven.archiva.model.ArtifactReference> getRelatedArtifacts(org.apache.maven.archiva.model.ArtifactReference reference)
                                                                                    throws ContentNotFoundException
Description copied from interface: ManagedRepositoryContent

Gather up the list of related artifacts to the ArtifactReference provided. This typically inclues the pom files, and those things with classifiers (such as doc, source code, test libs, etc...)

NOTE: Some layouts (such as maven 1 "legacy") are not compatible with this query.

Specified by:
getRelatedArtifacts in interface ManagedRepositoryContent
Parameters:
reference - the reference to work off of.
Returns:
the set of ArtifactReferences for related artifacts.
Throws:
ContentNotFoundException - if the initial artifact reference does not exist within the repository.

getRepoRoot

public java.lang.String getRepoRoot()
Description copied from interface: ManagedRepositoryContent

Convenience method to get the repository (on disk) root directory.

Equivalent to calling .getRepository().getLocation()

Specified by:
getRepoRoot in interface ManagedRepositoryContent
Returns:
the repository (on disk) root directory.

getRepository

public org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration getRepository()
Description copied from interface: ManagedRepositoryContent
Get the repository configuration associated with this repository content.

Specified by:
getRepository in interface ManagedRepositoryContent
Returns:
the repository that is associated with this repository content.

getVersions

public java.util.Set<java.lang.String> getVersions(org.apache.maven.archiva.model.ProjectReference reference)
                                            throws ContentNotFoundException,
                                                   LayoutException
Gather the Available Versions (on disk) for a specific Project Reference, based on filesystem information.

Specified by:
getVersions in interface ManagedRepositoryContent
Parameters:
reference - the project reference to work off of.
Returns:
the Set of available versions, based on the project reference.
Throws:
LayoutException
LayoutException
ContentNotFoundException - if the project reference does nto exist within the repository.

getVersions

public java.util.Set<java.lang.String> getVersions(org.apache.maven.archiva.model.VersionedReference reference)
                                            throws ContentNotFoundException
Description copied from interface: ManagedRepositoryContent

Given a specific VersionedReference, return the list of available versions for that versioned reference.

NOTE: This is really only useful when working with SNAPSHOTs.

Specified by:
getVersions in interface ManagedRepositoryContent
Parameters:
reference - the versioned reference to work off of.
Returns:
the set of versions found.
Throws:
ContentNotFoundException - if the versioned reference does not exist within the repository.

hasContent

public boolean hasContent(org.apache.maven.archiva.model.ArtifactReference reference)
Description copied from interface: ManagedRepositoryContent
Determines if the artifact referenced exists in the repository.

Specified by:
hasContent in interface ManagedRepositoryContent
Parameters:
reference - the artifact reference to check for.
Returns:
true if the artifact referenced exists.

hasContent

public boolean hasContent(org.apache.maven.archiva.model.ProjectReference reference)
Description copied from interface: ManagedRepositoryContent
Determines if the project referenced exists in the repository.

Specified by:
hasContent in interface ManagedRepositoryContent
Parameters:
reference - the project reference to check for.
Returns:
true it the project referenced exists.

hasContent

public boolean hasContent(org.apache.maven.archiva.model.VersionedReference reference)
Description copied from interface: ManagedRepositoryContent
Determines if the version reference exists in the repository.

Specified by:
hasContent in interface ManagedRepositoryContent
Parameters:
reference - the version reference to check for.
Returns:
true if the version referenced exists.

setRepository

public void setRepository(org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration repository)
Description copied from interface: ManagedRepositoryContent
Set the repository configuration to associate with this repository content.

Specified by:
setRepository in interface ManagedRepositoryContent
Parameters:
repository - the repository to associate with this repository content.

toArtifactReference

public org.apache.maven.archiva.model.ArtifactReference toArtifactReference(java.lang.String path)
                                                                     throws LayoutException
Convert a path to an artifact reference.

Specified by:
toArtifactReference in interface ManagedRepositoryContent
Overrides:
toArtifactReference in class AbstractDefaultRepositoryContent
Parameters:
path - the path to convert. (relative or full location path)
Returns:
the ArtifactReference representing the path. (or null if path cannot be converted to a ArtifactReference)
Throws:
LayoutException - if the path cannot be converted to an artifact reference.

toFile

public java.io.File toFile(org.apache.maven.archiva.model.ArtifactReference reference)
Description copied from interface: ManagedRepositoryContent
Given an ArtifactReference, return the file reference to the artifact.

Specified by:
toFile in interface ManagedRepositoryContent
Parameters:
reference - the artifact reference to use.
Returns:
the relative path to the artifact.

toFile

public java.io.File toFile(ArchivaArtifact reference)
Description copied from interface: ManagedRepositoryContent
Given an ArchivaArtifact, return the file reference to the artifact.

Specified by:
toFile in interface ManagedRepositoryContent
Parameters:
reference - the archiva artifact to use.
Returns:
the relative path to the artifact.

setFiletypes

public void setFiletypes(FileTypes filetypes)