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

Packages that use Response
org.glassfish.grizzly.http.server   
 

Uses of Response in org.glassfish.grizzly.http.server
 

Fields in org.glassfish.grizzly.http.server declared as Response
protected  Response Request.response
          The response with which this request is associated.
 

Fields in org.glassfish.grizzly.http.server with type parameters of type Response
protected  DelayedExecutor.DelayQueue<Response> Response.delayQueue
           
 

Methods in org.glassfish.grizzly.http.server that return Response
static Response Response.create()
           
 Response Request.getResponse()
          Return the Response with which this Request is associated.
 

Methods in org.glassfish.grizzly.http.server with parameters of type Response
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  boolean StaticResourcesService.handle(String uri, Request req, Response res)
          Lookup a resource based on the request URI, and send it using send file.
 void Request.initialize(Response response, HttpRequestPacket request, FilterChainContext ctx, HttpServerFilter httpServerFilter)
           
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.onRequestCompleteEvent(HttpServerFilter filter, Connection connection, Response response)
          Method will be called, when Request processing will be completed.
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.
static void StaticResourcesService.sendFile(Response response, File file)
           
 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.
 

Method parameters in org.glassfish.grizzly.http.server with type arguments of type Response
 void Response.initialize(Request request, HttpResponsePacket response, FilterChainContext ctx, DelayedExecutor.DelayQueue<Response> delayQueue, SuspendStatus suspendStatus)
           
 



Copyright © 2010 Oracle Corpration. All Rights Reserved.