Class ArtifactRepositoryMetadata
- java.lang.Object
-
- org.apache.maven.artifact.repository.metadata.AbstractRepositoryMetadata
-
- org.apache.maven.artifact.repository.metadata.ArtifactRepositoryMetadata
-
- All Implemented Interfaces:
ArtifactMetadata,RepositoryMetadata,ArtifactMetadata
public class ArtifactRepositoryMetadata extends AbstractRepositoryMetadata
Metadata for the artifact directory of the repository.
-
-
Field Summary
Fields Modifier and Type Field Description private Artifactartifact-
Fields inherited from interface org.apache.maven.artifact.repository.metadata.RepositoryMetadata
RELEASE, RELEASE_OR_SNAPSHOT, SNAPSHOT
-
-
Constructor Summary
Constructors Constructor Description ArtifactRepositoryMetadata(Artifact artifact)ArtifactRepositoryMetadata(Artifact artifact, Versioning versioning)
-
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()intgetNature()Gets the artifact quality this metadata refers to.ArtifactRepositorygetRepository()Get the repository the metadata was located in.booleanisSnapshot()Whether this represents a snapshot.private booleanisSnapshot(ArtifactVersion version)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, getPolicy, getRemoteFilename, merge, merge, setMetadata, storeInLocalRepository, toString, updateRepositoryMetadata
-
-
-
-
Field Detail
-
artifact
private Artifact artifact
-
-
Constructor Detail
-
ArtifactRepositoryMetadata
public ArtifactRepositoryMetadata(Artifact artifact)
-
ArtifactRepositoryMetadata
public ArtifactRepositoryMetadata(Artifact artifact, Versioning versioning)
-
-
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
-
getNature
public int getNature()
Description copied from interface:RepositoryMetadataGets the artifact quality this metadata refers to. One ofRepositoryMetadata.RELEASE,RepositoryMetadata.SNAPSHOTorRepositoryMetadata.RELEASE_OR_SNAPSHOT.- Specified by:
getNaturein interfaceRepositoryMetadata- Overrides:
getNaturein classAbstractRepositoryMetadata- Returns:
- The artifact quality this metadata refers to.
-
isSnapshot
private boolean isSnapshot(ArtifactVersion version)
-
getRepository
public ArtifactRepository getRepository()
Description copied from interface:RepositoryMetadataGet the repository the metadata was located in.- Returns:
- the repository
-
setRepository
public void setRepository(ArtifactRepository remoteRepository)
Description copied from interface:RepositoryMetadataSet the repository the metadata was located in.- Parameters:
remoteRepository- the repository
-
-