Interface ArtifactReference
-
public interface ArtifactReference
Represents a reference to an Artifact in a schema registry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getArtifactId()
Long
getContentId()
Long
getGlobalId()
String
getGroupId()
String
getName()
String
getVersion()
-
-
-
Method Detail
-
getGroupId
String getGroupId()
- Returns:
- the groupId as a String
-
getArtifactId
String getArtifactId()
- Returns:
- the artifactId as a String
-
getVersion
String getVersion()
- Returns:
- the version as a String
-
getGlobalId
Long getGlobalId()
- Returns:
- the globalId
-
getContentId
Long getContentId()
- Returns:
- the contentId
-
getName
String getName()
- Returns:
- the artifact reference name as a String
-
-