Package org.eclipse.aether.util.artifact
Class SubArtifact
java.lang.Object
org.eclipse.aether.artifact.AbstractArtifact
org.eclipse.aether.util.artifact.SubArtifact
- All Implemented Interfaces:
Artifact
An artifact whose identity is derived from another artifact. Note: Instances of this class are immutable and
the exposed mutators return new objects rather than changing the current instance.
-
Constructor Summary
ConstructorDescriptionSubArtifact
(Artifact mainArtifact, String classifier, String extension) Creates a new sub artifact.SubArtifact
(Artifact mainArtifact, String classifier, String extension, File file) Creates a new sub artifact.SubArtifact
(Artifact mainArtifact, String classifier, String extension, Map<String, String> properties) Creates a new sub artifact.SubArtifact
(Artifact mainArtifact, String classifier, String extension, Map<String, String> properties, File file) Creates a new sub artifact. -
Method Summary
Modifier and TypeMethodDescriptionGets the artifact identifier of this artifact, for example "maven-model".Gets the base version of this artifact, for example "1.0-SNAPSHOT".Gets the classifier of this artifact, for example "sources".Gets the (file) extension of this artifact, for example "jar" or "tar.gz".getFile()
Gets the file of this artifact.Gets the group identifier of this artifact, for example "org.apache.maven".Gets the properties of this artifact.Gets the version of this artifact, for example "1.0-20100529-1213".boolean
Determines whether this artifact uses a snapshot version.Sets the file of the artifact.setProperties
(Map<String, String> properties) Sets the properties for the artifact.Methods inherited from class org.eclipse.aether.artifact.AbstractArtifact
copyProperties, equals, getProperty, hashCode, setVersion, toString
-
Constructor Details
-
SubArtifact
Creates a new sub artifact. The classifier and extension specified for this artifact may use the asterisk character "*" to refer to the corresponding property of the main artifact. For instance, the classifier "*-sources" can be used to refer to the source attachment of an artifact. Likewise, the extension "*.asc" can be used to refer to the GPG signature of an artifact.- Parameters:
mainArtifact
- The artifact from which to derive the identity, must not benull
.classifier
- The classifier for this artifact, may benull
if none.extension
- The extension for this artifact, may benull
if none.
-
SubArtifact
Creates a new sub artifact. The classifier and extension specified for this artifact may use the asterisk character "*" to refer to the corresponding property of the main artifact. For instance, the classifier "*-sources" can be used to refer to the source attachment of an artifact. Likewise, the extension "*.asc" can be used to refer to the GPG signature of an artifact.- Parameters:
mainArtifact
- The artifact from which to derive the identity, must not benull
.classifier
- The classifier for this artifact, may benull
if none.extension
- The extension for this artifact, may benull
if none.file
- The file for this artifact, may benull
if unresolved.
-
SubArtifact
public SubArtifact(Artifact mainArtifact, String classifier, String extension, Map<String, String> properties) Creates a new sub artifact. The classifier and extension specified for this artifact may use the asterisk character "*" to refer to the corresponding property of the main artifact. For instance, the classifier "*-sources" can be used to refer to the source attachment of an artifact. Likewise, the extension "*.asc" can be used to refer to the GPG signature of an artifact.- Parameters:
mainArtifact
- The artifact from which to derive the identity, must not benull
.classifier
- The classifier for this artifact, may benull
if none.extension
- The extension for this artifact, may benull
if none.properties
- The properties of the artifact, may benull
.
-
SubArtifact
public SubArtifact(Artifact mainArtifact, String classifier, String extension, Map<String, String> properties, File file) Creates a new sub artifact. The classifier and extension specified for this artifact may use the asterisk character "*" to refer to the corresponding property of the main artifact. For instance, the classifier "*-sources" can be used to refer to the source attachment of an artifact. Likewise, the extension "*.asc" can be used to refer to the GPG signature of an artifact.- Parameters:
mainArtifact
- The artifact from which to derive the identity, must not benull
.classifier
- The classifier for this artifact, may benull
if none.extension
- The extension for this artifact, may benull
if none.properties
- The properties of the artifact, may benull
.file
- The file for this artifact, may benull
if unresolved.
-
-
Method Details
-
getGroupId
Description copied from interface:Artifact
Gets the group identifier of this artifact, for example "org.apache.maven".- Returns:
- The group identifier, never
null
.
-
getArtifactId
Description copied from interface:Artifact
Gets the artifact identifier of this artifact, for example "maven-model".- Returns:
- The artifact identifier, never
null
.
-
getVersion
Description copied from interface:Artifact
Gets the version of this artifact, for example "1.0-20100529-1213". Note that in case of meta versions like "1.0-SNAPSHOT", the artifact's version depends on the state of the artifact. Artifacts that have been resolved or deployed will usually have the meta version expanded.- Returns:
- The version, never
null
.
-
getBaseVersion
Description copied from interface:Artifact
Gets the base version of this artifact, for example "1.0-SNAPSHOT". In contrast to theArtifact.getVersion()
, the base version will always refer to the unresolved meta version.- Specified by:
getBaseVersion
in interfaceArtifact
- Overrides:
getBaseVersion
in classAbstractArtifact
- Returns:
- The base version, never
null
.
-
isSnapshot
Description copied from interface:Artifact
Determines whether this artifact uses a snapshot version.- Specified by:
isSnapshot
in interfaceArtifact
- Overrides:
isSnapshot
in classAbstractArtifact
- Returns:
true
if the artifact is a snapshot,false
otherwise.
-
getClassifier
Description copied from interface:Artifact
Gets the classifier of this artifact, for example "sources".- Returns:
- The classifier or an empty string if none, never
null
.
-
getExtension
Description copied from interface:Artifact
Gets the (file) extension of this artifact, for example "jar" or "tar.gz".- Returns:
- The file extension (without leading period), never
null
.
-
getFile
Description copied from interface:Artifact
Gets the file of this artifact. Note that only resolved artifacts have a file associated with them. In general, callers must not assume any relationship between an artifact's filename and its coordinates.- Returns:
- The file or
null
if the artifact isn't resolved.
-
setFile
Description copied from interface:Artifact
Sets the file of the artifact.- Specified by:
setFile
in interfaceArtifact
- Overrides:
setFile
in classAbstractArtifact
- Parameters:
file
- The file of the artifact, may benull
- Returns:
- The new artifact, never
null
.
-
getProperties
Description copied from interface:Artifact
Gets the properties of this artifact. Clients may use these properties to associate non-persistent values with an artifact that help later processing when the artifact gets passed around within the application.- Returns:
- The (read-only) properties, never
null
. - See Also:
-
setProperties
Description copied from interface:Artifact
Sets the properties for the artifact. Note that these properties exist merely in memory and are not persisted when the artifact gets installed/deployed to a repository.- Specified by:
setProperties
in interfaceArtifact
- Overrides:
setProperties
in classAbstractArtifact
- Parameters:
properties
- The properties for the artifact, may benull
.- Returns:
- The new artifact, never
null
. - See Also:
-