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

graphql.kickstart.autoconfigure.tools.SchemaDirective Maven / Gradle / Ivy

The newest version!
package graphql.kickstart.autoconfigure.tools;

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