graphql.kickstart.servlet.context.GraphQLServletContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-servlet-javax Show documentation
Show all versions of graphql-java-servlet-javax Show documentation
relay.js-compatible GraphQL servlet
The newest version!
package graphql.kickstart.servlet.context;
import graphql.kickstart.execution.context.GraphQLKickstartContext;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.Part;
/** @deprecated Use {@link graphql.kickstart.execution.context.GraphQLKickstartContext} instead */
public interface GraphQLServletContext extends GraphQLKickstartContext {
List getFileParts();
Map> getParts();
HttpServletRequest getHttpServletRequest();
HttpServletResponse getHttpServletResponse();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy