io.apicurio.registry.resolver.ParsedSchema Maven / Gradle / Ivy
package io.apicurio.registry.resolver;
import java.util.List;
public interface ParsedSchema {
/**
* @return the parsedSchema
*/
public T getParsedSchema();
/**
* @return the rawSchema
*/
public byte[] getRawSchema();
/**
* @return the the schema references (if any)
*/
public List> getSchemaReferences();
/**
* @return true if the schema has references
*/
public boolean hasReferences();
/**
* @return the name to be used when referencing this schema
*/
public String referenceName();
/**
* set the name to be used when referencing this schema
*/
public ParsedSchemaImpl setReferenceName(String referenceName);
}