Methods Summary |
---|
public int | doRead(org.apache.tomcat.util.buf.ByteChunk chunk, org.apache.coyote.Request req)Write some bytes.
// ----------------------------------------------------- Static Initializer
ENCODING.setBytes(ENCODING_NAME.getBytes(), 0, ENCODING_NAME.length());
return -1;
|
public long | end()End the current request. It is acceptable to write extra bytes using
buffer.doWrite during the execution of this method.
return 0;
|
public org.apache.tomcat.util.buf.ByteChunk | getEncodingName()Return the name of the associated encoding; Here, the value is
"void".
return ENCODING;
|
public void | recycle()Make the filter ready to process the next request.
|
public void | setBuffer(org.apache.coyote.InputBuffer buffer)Set the next buffer in the filter pipeline.
|
public void | setRequest(org.apache.coyote.Request request)Set the associated reauest.
|