Uses of Interface
javax.portlet.PortletResponse
-
Packages that use PortletResponse Package Description javax.portlet The javax.portlet package defines the API for Java Portlet Specification V2.0.javax.portlet.filter The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification. -
-
Uses of PortletResponse in javax.portlet
Subinterfaces of PortletResponse in javax.portlet Modifier and Type Interface Description interface
ActionResponse
TheActionResponse
interface represents the portlet response to an action request.interface
EventResponse
TheEventResponse
interface represents the portlet response to an event request.interface
MimeResponse
TheMimeResponse
defines the base interface to assist a portlet in returning MIME content.interface
RenderResponse
TheRenderResponse
defines an object to assist a portlet in sending a response to the portal.interface
ResourceResponse
TheResourceResponse
defines an object to assist a portlet for rendering a resource.interface
StateAwareResponse
TheStateAwareResponse
represents a response that can modify state information or send events.
It extends the PortletResponse interface.Methods in javax.portlet with parameters of type PortletResponse Modifier and Type Method Description void
PortletRequestDispatcher. forward(PortletRequest request, PortletResponse response)
Forwards a portlet request from a portlet to another resource (servlet, JSP file, or HTML file) on the server.void
PortletRequestDispatcher. include(PortletRequest request, PortletResponse response)
Includes the content of a resource (servlet, JSP page, HTML file) in the response. -
Uses of PortletResponse in javax.portlet.filter
Classes in javax.portlet.filter that implement PortletResponse Modifier and Type Class Description class
ActionResponseWrapper
TheActionResponseWrapper
provides a convenient implementation of theActionResponse
interface that can be subclassed by developers wishing to adapt the response.class
EventResponseWrapper
TheEventResponseWrapper
provides a convenient implementation of theEventResponse
interface that can be subclassed by developers wishing to adapt the response.class
PortletResponseWrapper
ThePortletResponseWrapper
provides a convenient implementation of thePortletResponse
interface and is extended by other response wrappers.class
RenderResponseWrapper
TheRenderResponseWrapper
provides a convenient implementation of theRenderResponse
interface that can be subclassed by developers wishing to adapt the response.class
ResourceResponseWrapper
TheResourceResponseWrapper
provides a convenient implementation of theResourceResponse
interface that can be subclassed by developers wishing to adapt the response.Fields in javax.portlet.filter declared as PortletResponse Modifier and Type Field Description (package private) PortletResponse
PortletResponseWrapper. response
Methods in javax.portlet.filter that return PortletResponse Modifier and Type Method Description PortletResponse
PortletResponseWrapper. getResponse()
Return the wrapped response object.Methods in javax.portlet.filter with parameters of type PortletResponse Modifier and Type Method Description void
PortletResponseWrapper. setResponse(PortletResponse response)
Sets the response object being wrapped.Constructors in javax.portlet.filter with parameters of type PortletResponse Constructor Description PortletResponseWrapper(PortletResponse response)
Creates anActionResponse
adaptor wrapping the given response object.
-