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

com.oembedler.moon.graphql.boot.SchemaDirective Maven / Gradle / Ivy

The newest version!
package com.oembedler.moon.graphql.boot;

import graphql.schema.idl.SchemaDirectiveWiring;

public class SchemaDirective {

    private final String name;
    private final SchemaDirectiveWiring directive;

    public SchemaDirective(String name, SchemaDirectiveWiring directive) {
        this.name = name;
        this.directive = directive;
    }

    public String getName() {
        return name;
    }

    public SchemaDirectiveWiring getDirective() {
        return directive;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy