com.github.moebiussolutions.avro_registry_in_source.SchemaProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avro-registry-in-source Show documentation
Show all versions of avro-registry-in-source Show documentation
Provides accessor methods for serializing Avro messages stored in a JAR
The newest version!
package com.github.moebiussolutions.avro_registry_in_source;
import org.apache.avro.Schema;
public interface SchemaProvider {
/**
* Returns a {@link Schema}, null
if not found.
*/
Schema getSchema(String namespace, String type, long signature);
}