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

marquez.graphql.GraphqlConfig Maven / Gradle / Ivy

There is a newer version: 0.49.0
Show newest version
/*
 * Copyright 2018-2023 contributors to the Marquez project
 * SPDX-License-Identifier: Apache-2.0
 */

package marquez.graphql;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;

public class GraphqlConfig {
  private static final boolean DEFAULT_GRAPHQL_ENABLED = true;

  @Getter @JsonProperty private boolean enabled = DEFAULT_GRAPHQL_ENABLED;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy