Uses of Class
com.sun.grizzly.tcp.Request

Packages that use Request
com.sun.grizzly.tcp   
com.sun.grizzly.tcp.http11   
com.sun.grizzly.tcp.http11.filters   
 

Uses of Request in com.sun.grizzly.tcp
 

Fields in com.sun.grizzly.tcp declared as Request
 Request DynamicContentAdapter.RequestTupple.req
           
protected  Request Response.req
           
 

Methods in com.sun.grizzly.tcp that return Request
 Request Response.getRequest()
           
 

Methods in com.sun.grizzly.tcp with parameters of type Request
 void StaticResourcesAdapter.afterService(Request req, Response res)
          Finish the Response and recycle the Request and the Response.
 void DynamicContentAdapter.afterService(Request req, Response res)
          Deprecated.  
 void Adapter.afterService(Request req, Response res)
          Finish the response and dedide if the Request/Response object must be recycled.
protected  void StaticResourcesAdapter.customizedErrorPage(Request req, Response res)
          Customize the error pahe
 int InputBuffer.doRead(ByteChunk chunk, Request request)
          Return from the input stream.
 void StaticResourcesAdapter.service(Request req, Response res)
          Based on the Request URI, try to map the file from the StaticResourcesAdapter#rootFolder, and send it synchronously using send file.
 void DynamicContentAdapter.service(Request req, Response res)
          Deprecated.  
 void Adapter.service(Request req, Response res)
          Invoke the service method.
protected  void StaticResourcesAdapter.service(String uri, Request req, Response res)
          Lookup a resource based on the request URI, and send it using send file.
protected abstract  void DynamicContentAdapter.serviceDynamicContent(Request req, Response res)
          Deprecated.  
 void Response.setRequest(Request req)
           
 

Constructors in com.sun.grizzly.tcp with parameters of type Request
RequestInfo(Request req)
          Constructor
 

Uses of Request in com.sun.grizzly.tcp.http11
 

Fields in com.sun.grizzly.tcp.http11 declared as Request
protected  Request GrizzlyRequest.request
          Grizzly request.
protected  Request InternalInputBuffer.request
          Associated Coyote request.
 

Methods in com.sun.grizzly.tcp.http11 that return Request
 Request GrizzlyInputBuffer.getRequest()
          Get associated Coyote request.
 Request GrizzlyRequest.getRequest()
          Get the Coyote request.
 

Methods in com.sun.grizzly.tcp.http11 with parameters of type Request
 void GrizzlyAdapter.afterService(Request req, Response res)
          Clean up the Request and Response object, and commit the response, and then invoke the GrizzlyAdapter.afterService(com.sun.grizzly.tcp.http11.GrizzlyRequest, com.sun.grizzly.tcp.http11.GrizzlyResponse) method to allow extension of this class to clean their own objects.
 int InputFilter.doRead(ByteChunk chunk, Request unused)
          Read bytes.
 int InternalInputBuffer.doRead(ByteChunk chunk, Request req)
          Read some bytes.
 int InternalInputBuffer.InputStreamInputBuffer.doRead(ByteChunk chunk, Request req)
          Read bytes into the specified chunk.
 void GrizzlyAdapter.service(Request req, Response res)
          Wrap a Request and Response with associated high level classes like GrizzlyRequest and GrizzlyResponse.
 void GrizzlyInputBuffer.setRequest(Request coyoteRequest)
          Associated Coyote request.
 void InputFilter.setRequest(Request request)
          Some filters need additional parameters from the request.
 void GrizzlyRequest.setRequest(Request request)
          Set the Coyote request.
 

Constructors in com.sun.grizzly.tcp.http11 with parameters of type Request
InternalInputBuffer(Request request)
          Default constructor.
InternalInputBuffer(Request request, int headerBufferSize)
          Alternate constructor.
 

Uses of Request in com.sun.grizzly.tcp.http11.filters
 

Methods in com.sun.grizzly.tcp.http11.filters with parameters of type Request
 int IdentityInputFilter.doRead(ByteChunk chunk, Request req)
          Read bytes.
 int ChunkedInputFilter.doRead(ByteChunk chunk, Request req)
          Read bytes.
 int BufferedInputFilter.doRead(ByteChunk chunk, Request request)
          Fills the given ByteChunk with the buffered request body.
 int VoidInputFilter.doRead(ByteChunk chunk, Request req)
          Write some bytes.
 void IdentityInputFilter.setRequest(Request request)
          Read the content length from the request.
 void ChunkedInputFilter.setRequest(Request request)
          Read the content length from the request.
 void BufferedInputFilter.setRequest(Request request)
          Reads the request body and buffers it.
 void VoidInputFilter.setRequest(Request request)
          Set the associated reauest.
 



Copyright © 2009 SUN Microsystems. All Rights Reserved.