Class SnapshotArtifactRepositoryMetadata
- java.lang.Object
-
- org.apache.maven.artifact.repository.metadata.AbstractRepositoryMetadata
-
- org.apache.maven.artifact.repository.metadata.SnapshotArtifactRepositoryMetadata
-
- All Implemented Interfaces:
ArtifactMetadata,RepositoryMetadata
public class SnapshotArtifactRepositoryMetadata extends AbstractRepositoryMetadata
Metadata for the artifact version directory of the repository.- Version:
- $Id: SnapshotArtifactRepositoryMetadata.java 640549 2008-03-24 20:05:11Z bentmann $
-
-
Constructor Summary
Constructors Constructor Description SnapshotArtifactRepositoryMetadata(Artifact artifact)SnapshotArtifactRepositoryMetadata(Artifact artifact, org.apache.maven.artifact.repository.metadata.Snapshot snapshot)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetArtifactId()java.lang.StringgetBaseVersion()java.lang.StringgetGroupId()java.lang.ObjectgetKey()booleanisSnapshot()Whether this represents a snapshot.voidsetRepository(ArtifactRepository remoteRepository)Set the repository the metadata was located in.booleanstoredInArtifactVersionDirectory()Whether this metadata should be stored alongside the artifact.booleanstoredInGroupDirectory()Whether this metadata should be stored alongside the group.-
Methods inherited from class org.apache.maven.artifact.repository.metadata.AbstractRepositoryMetadata
createMetadata, createVersioning, extendedToString, getLocalFilename, getMetadata, getRemoteFilename, merge, setMetadata, storeInLocalRepository, toString, updateRepositoryMetadata
-
-
-
-
Field Detail
-
artifact
private Artifact artifact
-
-
Method Detail
-
storedInGroupDirectory
public boolean storedInGroupDirectory()
Description copied from interface:ArtifactMetadataWhether this metadata should be stored alongside the group.
-
storedInArtifactVersionDirectory
public boolean storedInArtifactVersionDirectory()
Description copied from interface:ArtifactMetadataWhether this metadata should be stored alongside the artifact.
-
getGroupId
public java.lang.String getGroupId()
-
getArtifactId
public java.lang.String getArtifactId()
-
getBaseVersion
public java.lang.String getBaseVersion()
-
getKey
public java.lang.Object getKey()
-
isSnapshot
public boolean isSnapshot()
Description copied from interface:RepositoryMetadataWhether this represents a snapshot.- Returns:
- if it is a snapshot
-
setRepository
public void setRepository(ArtifactRepository remoteRepository)
Description copied from interface:RepositoryMetadataSet the repository the metadata was located in.- Parameters:
remoteRepository- the repository
-
-