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

graphql.servlet.DefaultGraphQLContextBuilder Maven / Gradle / Ivy

There is a newer version: 6.1.3
Show newest version
package graphql.servlet;

import javax.servlet.http.HttpServletRequest;
import javax.websocket.server.HandshakeRequest;

public class DefaultGraphQLContextBuilder implements GraphQLContextBuilder {

    @Override
    public GraphQLContext build(HttpServletRequest httpServletRequest) {
        return new GraphQLContext(httpServletRequest);
    }

    @Override
    public GraphQLContext build(HandshakeRequest handshakeRequest) {
        return new GraphQLContext(handshakeRequest);
    }

    @Override
    public GraphQLContext build() {
        return new GraphQLContext();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy