Portlet API 2

org.apache.jetspeed.portlet.xml
Interface SaxPortletResponse

All Superinterfaces:
PortletResponse

public interface SaxPortletResponse
extends PortletResponse

The SaxPortletResponse interface represents the response sent to the client device.

It is up to the portlet container to enhance, extend, or modify the response as required before it is actually sent to the client device.

The getContentWriter from PortletResponse does return null.

See Also:
SaxPortletRequest

Method Summary
 org.xml.sax.ContentHandler getContentHandler()
          Returns the content handler that the portlet can use to write SAX events.
 org.xml.sax.ext.LexicalHandler getLexicalHandler()
          Returns the lexical handler that the portlet can use to write SAX lexical events.
 
Methods inherited from interface org.apache.jetspeed.portlet.PortletResponse
addActionListener, createURI, encodeURI, getWriter
 

Method Detail

getContentHandler

public org.xml.sax.ContentHandler getContentHandler()
Returns the content handler that the portlet can use to write SAX events.
Returns:
the content handler

getLexicalHandler

public org.xml.sax.ext.LexicalHandler getLexicalHandler()
Returns the lexical handler that the portlet can use to write SAX lexical events.
Returns:
the lexical handler

Portlet API 2