| Method and Description |
|---|
| org.apache.nifi.schemaregistry.services.SchemaRegistry.retrieveSchema(long, int)
Use
retrieveSchema(SchemaIdentifier) instead
Retrieves the schema with the given ID and version. The RecordSchema that is returned must have the Schema's identifier and version
populated in its SchemaIdentifier. I.e., a call to
RecordSchema.getIdentifier().getIdentifier()
will always return an Optional that is not empty, as will a call to
RecordSchema.getIdentifier().getVersion(). |
| org.apache.nifi.schemaregistry.services.SchemaRegistry.retrieveSchema(String)
Use
retrieveSchema(SchemaIdentifier) instead
Retrieves and returns the RecordSchema based on the provided name of the schema available in Schema Registry. The RecordSchema
that is returned must have the Schema's name populated in its SchemaIdentifier. I.e., a call to
RecordSchema.getIdentifier().getName()
will always return an Optional that is not empty. |
| org.apache.nifi.schemaregistry.services.SchemaRegistry.retrieveSchemaText(long, int)
Use
retrieveSchema(SchemaIdentifier) instead
Retrieves the textual representation of the schema with the given ID and version |
| org.apache.nifi.schemaregistry.services.SchemaRegistry.retrieveSchemaText(String)
Use
retrieveSchema(SchemaIdentifier) instead
Retrieves and returns the textual representation of the schema based on
the provided name of the schema available in Schema Registry. |
Copyright © 2023 Apache NiFi Project. All rights reserved.