Uses of Class
org.glassfish.grizzly.http.server.Request

Packages that use Request
org.glassfish.grizzly.http.server   
org.glassfish.grizzly.http.server.io   
org.glassfish.grizzly.http.server.util   
 

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 StaticHttpHandler.addToFileCache(Request req, Response res, 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 HttpHandler.customizedErrorPage(Request req, Response res)
          Customize the error page.
 void HttpHandler.doHandle(Request request, Response response)
          Pre-processes HttpHandler Request and Response, checks the HTTP acknowledgment and decodes URL if required.
protected  String StaticHttpHandler.getRelativeURI(Request request)
           
protected  boolean StaticHttpHandler.handle(String uri, Request request, Response response)
          Lookup a resource based on the request URI, and send it using send file.
 SuspendStatus Response.initialize(Request request, HttpResponsePacket response, FilterChainContext ctx, DelayedExecutor.DelayQueue<Response> delayQueue, HttpServerFilter serverFilter)
           
 void AfterServiceListener.onAfterService(Request request)
          The method will be called once the Request processing will be completed.
protected  void StaticHttpHandler.onMissingResource(Request request, Response response)
          The method will be called, if the static resource requested by the Request wasn't found, so StaticHttpHandler 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.Adapter.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.Adapter.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.Adapter.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.Adapter.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.
 void HttpServerProbe.Adapter.onRequestTimeoutEvent(HttpServerFilter filter, Connection connection, Request request)
          Method will be called, when Request processing is timeout after suspend.
protected  void HttpServerFilter.onTraceRequest(Request request, Response response)
           
protected  boolean HttpHandlerChain.sendAcknowledgment(Request request, Response response)
          Skip 100-Continue processing in HttpHandlerChain.
protected  boolean HttpHandler.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 StaticHttpHandler.service(Request request, Response response)
          Based on the Request URI, try to map the file from the StaticHttpHandler.getDocRoots(), and send it back to a client.
 void HttpHandlerChain.service(Request request, Response response)
          Map the Request to the proper HttpHandler
abstract  void HttpHandler.service(Request request, Response response)
          This method should contain the logic for any HTTP extension to the Grizzly HTTP web server.
protected static void HttpHandler.updatePaths(Request request, MappingData mappingData)
          Utility method to update Request path values.
 

Uses of Request in org.glassfish.grizzly.http.server.io
 

Methods in org.glassfish.grizzly.http.server.io with parameters of type Request
 void InputBuffer.initialize(Request serverRequest, FilterChainContext ctx)
           Per-request initialization required for the InputBuffer to function properly.
 

Uses of Request in org.glassfish.grizzly.http.server.util
 

Methods in org.glassfish.grizzly.http.server.util with parameters of type Request
static void RequestUtils.handleSendFile(Request request)
           
static Object RequestUtils.populateCertificateAttribute(Request request)
           
static void RequestUtils.populateSSLAttributes(Request request)
           
static void HtmlHelper.writeTraceMessage(Request request, Response response)
           
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.