se.hiq.oss.json.schema.repo.JsonSchemaRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-discovery Show documentation
Show all versions of json-schema-discovery Show documentation
Auto-detected JSON schema classes and provide a repository for easy lookup
package se.hiq.oss.json.schema.repo;
import java.util.Optional;
import java.util.Set;
public interface JsonSchemaRepository {
Optional getSchemaRegistration(String name, String version);
boolean isSupported(String name, String version);
Set getSupportedVersions(String name);
void registerSchemaFor(Class> serDeClass);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy