Class ArtifactCoordinates
- java.lang.Object
-
- io.apicurio.registry.resolver.strategy.ArtifactCoordinates
-
public class ArtifactCoordinates extends Object
- Author:
- Carles Arnal
- See Also:
ArtifactReference
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classArtifactCoordinates.ArtifactCoordinatesBuilder
-
Constructor Summary
Constructors Modifier Constructor Description protectedArtifactCoordinates()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ArtifactCoordinates.ArtifactCoordinatesBuilderbuilder()booleanequals(Object obj)static ArtifactCoordinatesfromArtifactReference(ArtifactReference artifactReference)StringgetArtifactId()StringgetGroupId()StringgetVersion()inthashCode()protected voidsetArtifactId(String artifactId)protected voidsetGroupId(String groupId)protected voidsetVersion(String version)StringtoString()
-
-
-
Method Detail
-
getGroupId
public String getGroupId()
-
getArtifactId
public String getArtifactId()
-
getVersion
public String getVersion()
-
setGroupId
protected void setGroupId(String groupId)
- Parameters:
groupId- the groupId to set
-
setArtifactId
protected void setArtifactId(String artifactId)
- Parameters:
artifactId- the artifactId to set
-
setVersion
protected void setVersion(String version)
- Parameters:
version- the version to set
-
equals
public boolean equals(Object obj)
- Overrides:
equalsin classObject- See Also:
ArtifactReference.equals(java.lang.Object)
-
toString
public String toString()
- Overrides:
toStringin classObject- See Also:
toString()
-
fromArtifactReference
public static ArtifactCoordinates fromArtifactReference(ArtifactReference artifactReference)
-
builder
public static ArtifactCoordinates.ArtifactCoordinatesBuilder builder()
-
-