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

com.intuit.graphql.authorization.enforcement.PermissionVerifier Maven / Gradle / Ivy

package com.intuit.graphql.authorization.enforcement;

import graphql.schema.GraphQLFieldDefinition;
import graphql.schema.GraphQLType;


public interface PermissionVerifier {

  default boolean isPermitted(GraphQLType graphQLType) {
    return false;
  }

  default boolean isPermitted(GraphQLType graphQLType, GraphQLFieldDefinition fieldDefinition) {
    return false;
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy