Package graphql.kickstart.servlet
Interface HttpRequestHandler
-
public interface HttpRequestHandler
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringAPPLICATION_EVENT_STREAM_UTF8static java.lang.StringAPPLICATION_JSON_UTF8static intSTATUS_BAD_REQUESTstatic intSTATUS_INTERNAL_SERVER_ERRORstatic intSTATUS_OK
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
-
-
-
Field Detail
-
APPLICATION_JSON_UTF8
static final java.lang.String APPLICATION_JSON_UTF8
- See Also:
- Constant Field Values
-
APPLICATION_EVENT_STREAM_UTF8
static final java.lang.String APPLICATION_EVENT_STREAM_UTF8
- See Also:
- Constant Field Values
-
STATUS_OK
static final int STATUS_OK
- See Also:
- Constant Field Values
-
STATUS_BAD_REQUEST
static final int STATUS_BAD_REQUEST
- See Also:
- Constant Field Values
-
STATUS_INTERNAL_SERVER_ERROR
static final int STATUS_INTERNAL_SERVER_ERROR
- See Also:
- Constant Field Values
-
-