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

com.networknt.graphql.common.GraphqlUtil Maven / Gradle / Ivy

There is a newer version: 2.1.38
Show newest version
package com.networknt.graphql.common;

import com.networknt.config.Config;
import io.undertow.util.AttachmentKey;

/**
 * A utility class that contains some static variables and static methods shared
 * by all other modules.
 *
 * @author Steve Hu
 */
public class GraphqlUtil {
    public static final String CONFIG_NAME = "graphql";

    public static final AttachmentKey GRAPHQL_PARAMS = AttachmentKey.create(Object.class);

    public static GraphqlConfig config = (GraphqlConfig) Config.getInstance().getJsonObjectConfig(CONFIG_NAME, GraphqlConfig.class);
}