All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.apicurio.registry.resolver.ParsedSchema Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy