-
- All Known Implementing Classes:
DefaultArtifactKey
public interface ArtifactKeyEclipse/OSGi artifact key. Contains the "coordinates" which identify an artifact in the Eclipse universe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Eclipse/OSGi artifact id (bundle symbolic name, feature id, etc).StringgetType()Artifact type.StringgetVersion()Eclipse/OSGi artifact version.
-
-
-
Method Detail
-
getType
String getType()
Artifact type. Should be one of theArtifactTypeconstants.
-
getId
String getId()
Eclipse/OSGi artifact id (bundle symbolic name, feature id, etc). Can differ from Maven artifactId.
-
getVersion
String getVersion()
Eclipse/OSGi artifact version. Can differ from Maven version. For maven projects, this version corresponds to version specified in the project sources and does not reflect qualifier expansion.
-
-