public interface ContainerResponseWriter
WebApplication
or ContainerResponse
.Modifier and Type | Method and Description |
---|---|
void |
finish()
Finish writing the response.
|
OutputStream |
writeStatusAndHeaders(long contentLength,
ContainerResponse response)
Write the status and headers of the response and return an output stream
for the web application to write the entity of the response.
|
OutputStream writeStatusAndHeaders(long contentLength, ContainerResponse response) throws IOException
contentLength
- >=0 if the content length in bytes of the
entity to be written is known, otherwise -1. Containers
may use this value to determine whether the "Content-Length"
header can be set or utilize chunked transfer encoding.response
- the container response. The status and headers are
obtained from the response.IOException
- if an error occured when writing out the
status and headers or obtaining the output stream.void finish() throws IOException
IOException
Copyright © 2013 Oracle Corporation. All rights reserved.