Uses of Interface
org.apache.coyote.InputBuffer

Packages that use InputBuffer
org.apache.coyote   
org.apache.coyote.http11   
org.apache.coyote.http11.filters   
 

Uses of InputBuffer in org.apache.coyote
 

Methods in org.apache.coyote that return InputBuffer
 InputBuffer Request.getInputBuffer()
           
 

Methods in org.apache.coyote with parameters of type InputBuffer
 void Request.setInputBuffer(InputBuffer inputBuffer)
           
 

Uses of InputBuffer in org.apache.coyote.http11
 

Subinterfaces of InputBuffer in org.apache.coyote.http11
 interface InputFilter
          Input filter interface.
 

Classes in org.apache.coyote.http11 that implement InputBuffer
 class InternalInputBuffer
          Implementation of InputBuffer which provides HTTP request header parsing as well as transfer decoding.
protected  class InternalInputBuffer.InputStreamInputBuffer
          This class is an input buffer which will read its data from an input stream.
 

Fields in org.apache.coyote.http11 declared as InputBuffer
protected  InputBuffer InternalInputBuffer.inputStreamInputBuffer
          Underlying input buffer.
 

Methods in org.apache.coyote.http11 with parameters of type InputBuffer
 void InputFilter.setBuffer(InputBuffer buffer)
          Set the next buffer in the filter pipeline.
 

Uses of InputBuffer in org.apache.coyote.http11.filters
 

Classes in org.apache.coyote.http11.filters that implement InputBuffer
 class BufferedInputFilter
          Input filter responsible for reading and buffering the request body, so that it does not interfere with client SSL handshake messages.
 class ChunkedInputFilter
          Chunked input filter.
 class IdentityInputFilter
          Identity input filter.
 class VoidInputFilter
          Void input filter, which returns -1 when attempting a read.
 

Fields in org.apache.coyote.http11.filters declared as InputBuffer
protected  InputBuffer ChunkedInputFilter.buffer
          Next buffer in the pipeline.
protected  InputBuffer IdentityInputFilter.buffer
          Next buffer in the pipeline.
 

Methods in org.apache.coyote.http11.filters with parameters of type InputBuffer
 void BufferedInputFilter.setBuffer(InputBuffer buffer)
           
 void ChunkedInputFilter.setBuffer(InputBuffer buffer)
          Set the next buffer in the filter pipeline.
 void IdentityInputFilter.setBuffer(InputBuffer buffer)
          Set the next buffer in the filter pipeline.
 void VoidInputFilter.setBuffer(InputBuffer buffer)
          Set the next buffer in the filter pipeline.
 



Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.