Class AbstractArtifactMetadata
- java.lang.Object
-
- org.apache.maven.artifact.metadata.AbstractArtifactMetadata
-
- All Implemented Interfaces:
ArtifactMetadata
public abstract class AbstractArtifactMetadata extends java.lang.Object implements ArtifactMetadata
Common elements of artifact metadata.- Version:
- $Id$
- Author:
- Brett Porter
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractArtifactMetadata(Artifact artifact)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
extendedToString()
java.lang.String
getArtifactId()
java.lang.String
getGroupId()
boolean
storedInGroupDirectory()
Whether this metadata should be stored alongside the group.-
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.artifact.metadata.ArtifactMetadata
getBaseVersion, getKey, getLocalFilename, getRemoteFilename, merge, storedInArtifactVersionDirectory, storeInLocalRepository
-
-
-
-
Field Detail
-
artifact
protected Artifact artifact
-
-
Constructor Detail
-
AbstractArtifactMetadata
protected AbstractArtifactMetadata(Artifact artifact)
-
-
Method Detail
-
storedInGroupDirectory
public boolean storedInGroupDirectory()
Description copied from interface:ArtifactMetadata
Whether this metadata should be stored alongside the group.- Specified by:
storedInGroupDirectory
in interfaceArtifactMetadata
-
getGroupId
public java.lang.String getGroupId()
- Specified by:
getGroupId
in interfaceArtifactMetadata
-
getArtifactId
public java.lang.String getArtifactId()
- Specified by:
getArtifactId
in interfaceArtifactMetadata
-
extendedToString
public java.lang.String extendedToString()
- Specified by:
extendedToString
in interfaceArtifactMetadata
-
-