| com.caucho.portal.generic.context.ResponseHandler
All known Subclasses: com.caucho.portal.generic.context.TopLevelResponseHandler, com.caucho.portal.generic.context.AbstractResponseHandler,
ResponseHandler | public interface ResponseHandler (Code) | | |
addProperty | public void addProperty(String name, String value)(Code) | | Add a value to a property to be returned to the client.
"properties" correspond to HTTP headers in the response for HTTP
connections.
See Also: javax.portlet.PortletResponse.addProperty |
flushBuffer | public void flushBuffer() throws IOException(Code) | | Implementations should NOT call flushBuffer() on any wrapped
streams, flushing through the chain of ResponseHandlers is done by
ConnectionContext.
|
getBufferSize | public int getBufferSize()(Code) | | |
getCharacterEncoding | public String getCharacterEncoding()(Code) | | Get the character encoding of the writer.
|
getContentType | public String getContentType()(Code) | | Get the type previously set with setContentType
or null if the type has not been set.
|
isCommitted | public boolean isCommitted()(Code) | | |
reset | public void reset()(Code) | | Implementations should call NOT call reset() on any wrapped streams.
streams, reset() through the chain of ResponseHandlers is done by
ConnectionContext.
|
resetBuffer | public void resetBuffer()(Code) | | Implementations should NOT call resetBuffer() on any wrapped
streams, resetBuffer() through the chain of ResponseHandlers is done by
ConnectionContext.
|
setBufferSize | public void setBufferSize(int size)(Code) | | |
setContentType | public void setContentType(String contentType)(Code) | | |
setProperty | public void setProperty(String name, String value)(Code) | | Set a property to be returned to the client.
"properties" correspond to HTTP headers in the response for HTTP
connections.
See Also: javax.portlet.PortletResponse.setProperty |
|
|