io.continual.services.model.core.ModelSchemaRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of continualModel Show documentation
Show all versions of continualModel Show documentation
Continual's modeling library.
package io.continual.services.model.core;
import io.continual.services.model.core.exceptions.ModelServiceException;
public interface ModelSchemaRegistry
{
/**
* Get the named schema, or return null if it's not available
* @param name
* @return a schema or null
* @throws ModelServiceException
*/
ModelSchema getSchema ( String name ) throws ModelServiceException;
}