public final class WritableHandler extends Object implements ResponseHandler
Writable
and ReaderResource
objects.
Uses the Writable.writeTo(Writer)
method to send the contents to the RestResponse.getNegotiatedWriter()
writer.
Constructor and Description |
---|
WritableHandler() |
Modifier and Type | Method and Description |
---|---|
boolean |
handle(RestRequest req,
RestResponse res,
Object output)
Process this response if possible.
|
public WritableHandler()
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.