Package io.apicurio.registry.resolver
Class SchemaLookupResult<T>
- java.lang.Object
-
- io.apicurio.registry.resolver.SchemaLookupResult<T>
-
public class SchemaLookupResult<T> extends Object
- Author:
- Fabian Martinez
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSchemaLookupResult.SchemaLookupResultBuilder<T>
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> SchemaLookupResult.SchemaLookupResultBuilder<T>builder()StringgetArtifactId()StringgetContentHash()longgetContentId()longgetGlobalId()StringgetGroupId()ParsedSchema<T>getParsedSchema()StringgetVersion()ArtifactCoordinatestoArtifactCoordinates()ArtifactReferencetoArtifactReference()
-
-
-
Method Detail
-
getParsedSchema
public ParsedSchema<T> getParsedSchema()
- Returns:
- the parsedSchema
-
getGlobalId
public long getGlobalId()
- Returns:
- the globalId
-
getContentId
public long getContentId()
- Returns:
- the contentId
-
getContentHash
public String getContentHash()
- Returns:
- the contentHash
-
getGroupId
public String getGroupId()
- Returns:
- the groupId
-
getArtifactId
public String getArtifactId()
- Returns:
- the artifactId
-
getVersion
public String getVersion()
- Returns:
- the version
-
toArtifactReference
public ArtifactReference toArtifactReference()
-
toArtifactCoordinates
public ArtifactCoordinates toArtifactCoordinates()
-
builder
public static <T> SchemaLookupResult.SchemaLookupResultBuilder<T> builder()
-
-