|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Request | |
|---|---|
| org.glassfish.grizzly.http.server | |
| Uses of Request in org.glassfish.grizzly.http.server |
|---|
| Fields in org.glassfish.grizzly.http.server declared as Request | |
|---|---|
protected Request |
Response.request
The request with which this response is associated. |
| Methods in org.glassfish.grizzly.http.server that return Request | |
|---|---|
static Request |
Request.create()
|
Request |
Response.getRequest()
Return the Request with which this Response is associated. |
| Methods in org.glassfish.grizzly.http.server with parameters of type Request | |
|---|---|
boolean |
StaticResourcesService.addToFileCache(Request req,
File resource)
|
static StringBuffer |
Request.appendRequestURL(Request request,
StringBuffer buffer)
Appends the reconstructed URL the client used to make the request. |
static StringBuilder |
Request.appendRequestURL(Request request,
StringBuilder buffer)
Appends the reconstructed URL the client used to make the request. |
protected void |
HttpRequestProcessor.customizedErrorPage(Request req,
Response res)
Customize the error page. |
void |
HttpRequestProcessor.doService(Request request,
Response response)
Handles static resources if this service is configured to do so, otherwise invokes HttpRequestProcessor.service(Request, Response). |
protected String |
StaticResourcesService.getRelativeURI(Request request)
|
protected boolean |
StaticResourcesService.handle(String uri,
Request req,
Response res)
Lookup a resource based on the request URI, and send it using send file. |
void |
Response.initialize(Request request,
HttpResponsePacket response,
FilterChainContext ctx,
DelayedExecutor.DelayQueue<Response> delayQueue,
SuspendStatus suspendStatus)
|
void |
AfterServiceListener.onAfterService(Request request)
The method will be called once the Request processing will be completed. |
protected void |
StaticResourcesService.onMissingResource(Request request,
Response response)
The method will be called, if the static resource requested by the Request
wasn't found, so StaticResourcesService implementation may try to
workaround this situation. |
void |
HttpServerProbe.onRequestCancelEvent(HttpServerFilter filter,
Connection connection,
Request request)
Method will be called, when Request processing is cancelled
after suspend. |
void |
HttpServerProbe.onRequestReceiveEvent(HttpServerFilter filter,
Connection connection,
Request request)
Method will be called, when new Request will come. |
void |
HttpServerProbe.onRequestResumeEvent(HttpServerFilter filter,
Connection connection,
Request request)
Method will be called, when Request processing is resumed. |
void |
HttpServerProbe.onRequestSuspendEvent(HttpServerFilter filter,
Connection connection,
Request request)
Method will be called, when Request processing is suspended. |
void |
HttpServerProbe.onRequestTimeoutEvent(HttpServerFilter filter,
Connection connection,
Request request)
Method will be called, when Request processing is timeout
after suspend. |
protected boolean |
HttpRequestProcessor.sendAcknowledgment(Request request,
Response response)
The default implementation will acknowledge an Expect: 100-Continue
with a response line with the status 100 followed by the final response
to this request. |
void |
StaticResourcesService.service(Request request,
Response response)
Based on the Request URI, try to map the file from the
StaticResourcesService.getDocRoots(), and send it back to a client. |
void |
HttpServiceChain.service(Request request,
Response response)
Map the Request to the proper HttpRequestProcessor |
abstract void |
HttpRequestProcessor.service(Request request,
Response response)
This method should contain the logic for any HTTP extension to the Grizzly HTTP web server. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||