public abstract class StreamView extends Object implements View
Constructor and Description |
---|
StreamView() |
Modifier and Type | Method and Description |
---|---|
protected abstract String |
getContentType()
Gets the content type of the response to be streamed back to the
requestor.
|
protected abstract byte[] |
getPayload()
Gets the content of the response to be streamed back to the requestor.
|
void |
render(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
This method is invoked last in the sequence of steps involved in
processing a request sent to the FrontController.
|
protected abstract String getContentType()
protected abstract byte[] getPayload()
public void render(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
View
This method is invoked last in the sequence of steps involved in processing a request sent to the FrontController. The servlet request can be used to set any attributes, then to obtain a RequestDispatcher for forwarding or including, or the servlet response may be used to send a redirect, for example.
Users should note that any exceptions thrown from this method are not guaranteed to be caught in the FrontController. They may escape to the requestor. Users should handle any exceptions inside the implementation of this method if different behaviour is desired.
render
in interface View
request
- the servlet requestresponse
- the servlet responsejavax.servlet.ServletException
IOException
Copyright © 2011-2012 MojaveMVC.org