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 interfaceActionResponseTheActionResponseinterface represents the portlet response to an action request.interfaceEventResponseTheEventResponseinterface represents the portlet response to an event request.interfaceMimeResponseTheMimeResponsedefines the base interface to assist a portlet in returning MIME content.interfaceRenderResponseTheRenderResponsedefines an object to assist a portlet in sending a response to the portal.interfaceResourceResponseTheResourceResponsedefines an object to assist a portlet for rendering a resource.interfaceStateAwareResponseTheStateAwareResponserepresents 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 voidPortletRequestDispatcher. forward(PortletRequest request, PortletResponse response)Forwards a portlet request from a portlet to another resource (servlet, JSP file, or HTML file) on the server.voidPortletRequestDispatcher. 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 classActionResponseWrapperTheActionResponseWrapperprovides a convenient implementation of theActionResponseinterface that can be subclassed by developers wishing to adapt the response.classEventResponseWrapperTheEventResponseWrapperprovides a convenient implementation of theEventResponseinterface that can be subclassed by developers wishing to adapt the response.classPortletResponseWrapperThePortletResponseWrapperprovides a convenient implementation of thePortletResponseinterface and is extended by other response wrappers.classRenderResponseWrapperTheRenderResponseWrapperprovides a convenient implementation of theRenderResponseinterface that can be subclassed by developers wishing to adapt the response.classResourceResponseWrapperTheResourceResponseWrapperprovides a convenient implementation of theResourceResponseinterface that can be subclassed by developers wishing to adapt the response.Methods in javax.portlet.filter that return PortletResponse Modifier and Type Method Description PortletResponsePortletResponseWrapper. getResponse()Return the wrapped response object.Methods in javax.portlet.filter with parameters of type PortletResponse Modifier and Type Method Description voidPortletResponseWrapper. 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 anActionResponseadaptor wrapping the given response object.
-