
com.blazebit.query.spi.QuerySchemaProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-query-core-api Show documentation
Show all versions of blaze-query-core-api Show documentation
A multi-platform querying library
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Blazebit
*/
package com.blazebit.query.spi;
import java.util.Set;
/**
* A {@link java.util.ServiceLoader} SPI to provide schema objects.
*
* @author Christian Beikov
* @since 1.0.0
*/
public interface QuerySchemaProvider {
/**
* Resolves the schema objects based on a configuration provider.
*
* @param configurationProvider A configuration provider
* @return The schema objects to register
*/
Set extends DataFetcher>> resolveSchemaObjects(ConfigurationProvider configurationProvider);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy