|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.sonatype.aether.util.artifact.AbstractArtifact
org.sonatype.aether.util.artifact.DefaultArtifact
public final class DefaultArtifact
A simple artifact.
Constructor Summary | |
---|---|
DefaultArtifact(String coords)
Creates a new artifact with the specified coordinates. |
|
DefaultArtifact(String coords,
Map<String,String> properties)
Creates a new artifact with the specified coordinates and properties. |
|
DefaultArtifact(String groupId,
String artifactId,
String extension,
String version)
Creates a new artifact with the specified coordinates. |
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version)
Creates a new artifact with the specified coordinates. |
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version,
ArtifactType type)
Creates a new artifact with the specified coordinates. |
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version,
Map<String,String> properties,
ArtifactType type)
Creates a new artifact with the specified coordinates and properties. |
|
DefaultArtifact(String groupId,
String artifactId,
String classifier,
String extension,
String version,
Map<String,String> properties,
File file)
Creates a new artifact with the specified coordinates, properties and file. |
Method Summary | |
---|---|
String |
getArtifactId()
Gets the artifact identifier of this artifact, for example "maven-model". |
String |
getBaseVersion()
Gets the base version of this artifact, for example "1.0-SNAPSHOT". |
String |
getClassifier()
Gets the classifier of this artifact, for example "sources". |
String |
getExtension()
Gets the (file) extension of this artifact, for example "jar". |
File |
getFile()
Gets the file of this artifact. |
String |
getGroupId()
Gets the group identifier of this artifact, for example "org.apache.maven". |
Map<String,String> |
getProperties()
Gets the properties of this artifact. |
String |
getProperty(String key,
String defaultValue)
Gets the specified property. |
String |
getVersion()
Gets the version of this artifact, for example "1.0-20100529-1213". |
boolean |
isSnapshot()
Determines whether this artifact uses a snapshot version. |
Artifact |
setFile(File file)
Sets the file of the artifact. |
Artifact |
setProperties(Map<String,String> properties)
Sets the properties for the artifact. |
Artifact |
setVersion(String version)
Sets the version of this artifact. |
Methods inherited from class org.sonatype.aether.util.artifact.AbstractArtifact |
---|
equals, hashCode, isSnapshot, toBaseVersion, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public DefaultArtifact(String coords)
coords
- The artifact coordinates in the format
<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>
, must not be null
.public DefaultArtifact(String coords, Map<String,String> properties)
coords
- The artifact coordinates in the format
<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>
, must not be null
.properties
- The artifact properties, may be null
.public DefaultArtifact(String groupId, String artifactId, String extension, String version)
groupId
- The group identifier of the artifact, may be null
.artifactId
- The artifact identifier of the artifact, may be null
.extension
- The file extension of the artifact, may be null
.version
- The version of the artifact, may be null
.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version)
groupId
- The group identifier of the artifact, may be null
.artifactId
- The artifact identifier of the artifact, may be null
.classifier
- The classifier of the artifact, may be null
.extension
- The file extension of the artifact, may be null
.version
- The version of the artifact, may be null
.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version, ArtifactType type)
null
.
groupId
- The group identifier of the artifact, may be null
.artifactId
- The artifact identifier of the artifact, may be null
.classifier
- The classifier of the artifact, may be null
.extension
- The file extension of the artifact, may be null
.version
- The version of the artifact, may be null
.type
- The artifact type from which to query classifier, file extension and properties, may be null
.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version, Map<String,String> properties, ArtifactType type)
null
. If the artifact type specifies properties, those will get merged with the
properties passed directly into the constructor, with the latter properties taking precedence.
groupId
- The group identifier of the artifact, may be null
.artifactId
- The artifact identifier of the artifact, may be null
.classifier
- The classifier of the artifact, may be null
.extension
- The file extension of the artifact, may be null
.version
- The version of the artifact, may be null
.properties
- The properties of the artifact, may be null
.type
- The artifact type from which to query classifier, file extension and properties, may be null
.public DefaultArtifact(String groupId, String artifactId, String classifier, String extension, String version, Map<String,String> properties, File file)
groupId
- The group identifier of the artifact, may be null
.artifactId
- The artifact identifier of the artifact, may be null
.classifier
- The classifier of the artifact, may be null
.extension
- The file extension of the artifact, may be null
.version
- The version of the artifact, may be null
.properties
- The properties of the artifact, may be null
.file
- The resolved file of the artifact, may be null
.Method Detail |
---|
public String getGroupId()
Artifact
null
.public String getArtifactId()
Artifact
null
.public String getBaseVersion()
Artifact
Artifact.getVersion()
, the
base version will always refer to the unresolved meta version.
null
.public String getVersion()
Artifact
null
.public Artifact setVersion(String version)
Artifact
setVersion
in interface Artifact
setVersion
in class AbstractArtifact
version
- The version of this artifact, may be null
.
null
.public boolean isSnapshot()
Artifact
true
if the artifact is a snapshot, false
otherwise.public String getClassifier()
Artifact
null
.public String getExtension()
Artifact
null
.public File getFile()
Artifact
null
if the artifact isn't resolved.public Artifact setFile(File file)
Artifact
setFile
in interface Artifact
setFile
in class AbstractArtifact
file
- The file of the artifact, may be null
null
.public String getProperty(String key, String defaultValue)
Artifact
key
- The name of the property, must not be null
.defaultValue
- The default value to return in case the property is not set, may be null
.public Map<String,String> getProperties()
Artifact
null
.public Artifact setProperties(Map<String,String> properties)
Artifact
setProperties
in interface Artifact
setProperties
in class AbstractArtifact
properties
- The properties for the artifact, may be null
.
null
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |