public final class InputStreamHandler extends Object implements ResponseHandler
InputStream
objects.
Simply pipes the contents of the InputStream
to RestResponse.getNegotiatedOutputStream()
.
Sets the Content-Type
response header to whatever was set via ServletResponseWrapper.setContentType(String)
.
Constructor and Description |
---|
InputStreamHandler() |
Modifier and Type | Method and Description |
---|---|
boolean |
handle(RestRequest req,
RestResponse res,
Object output)
Process this response if possible.
|
public InputStreamHandler()
public boolean handle(RestRequest req, RestResponse res, Object output) throws IOException, RestException
ResponseHandler
handle
in interface ResponseHandler
req
- The HTTP servlet request.res
- The HTTP servlet response;output
- The POJO returned by the REST method that now needs to be sent to the response.IOException
- If low-level exception occurred on output stream.
Results in a HttpServletResponse.SC_INTERNAL_SERVER_ERROR
error.RestException
- If some other exception occurred.
Can be used to provide an appropriate HTTP response code and message.Copyright © 2018 Apache. All rights reserved.