graphql.kickstart.servlet.context.GraphQLWebSocketContext 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 javax.websocket.Session;
import javax.websocket.server.HandshakeRequest;
/** @deprecated Use {@link graphql.kickstart.execution.context.GraphQLKickstartContext} instead */
public interface GraphQLWebSocketContext extends GraphQLKickstartContext {
Session getSession();
HandshakeRequest getHandshakeRequest();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy