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

graphql.schema.idl.WiringEnvironment Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.schema.idl;


import graphql.PublicApi;

@PublicApi
abstract class WiringEnvironment {

    private final TypeDefinitionRegistry registry;

    WiringEnvironment(TypeDefinitionRegistry registry) {
        this.registry = registry;
    }

    public TypeDefinitionRegistry getRegistry() {
        return registry;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy