Uses of Interface
jakarta.portlet.PortletResponse
-
Packages that use PortletResponse Package Description jakarta.portlet The jakarta.portlet package defines the API for the Jakarta Portlet Specification V4.0.jakarta.portlet.filter The jakarta.portlet.filter package defines the filter APIs for the Jakarta Portlet Specification. -
-
Uses of PortletResponse in jakarta.portlet
Subinterfaces of PortletResponse in jakarta.portlet Modifier and Type Interface Description interfaceActionResponseTheActionResponseinterface represents the portlet response to an action request.interfaceEventResponseTheEventResponseinterface represents the portlet response to an event request.interfaceHeaderResponseThe portlet programming interface provides a mechanism to assist portlets when the aggregated portal markup is an HTML or similar document that requires markup for the documentHEADsection to be written and HTTP headers to be set before the render markup for each individual portlet is aggregated.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 render state information or send events.Methods in jakarta.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 jakarta.portlet.filter
Classes in jakarta.portlet.filter that implement PortletResponse Modifier and Type Class Description classActionResponseWrapperTheActionResponseWrapperprovides a convenient implementation of theActionResponseinterface that can be subclassed by developers.classEventResponseWrapperTheEventResponseWrapperprovides a convenient implementation of theEventResponseinterface that can be subclassed by developers.classHeaderResponseWrapperTheHeaderResponseWrapperprovides a convenient implementation of theHeaderResponseinterface that can be subclassed by developers.classMimeResponseWrapperTheMimeResponseWrapperprovides a convenient implementation of theMimeResponseinterface that can be subclassed by developers.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.classResourceResponseWrapperTheResourceResponseWrapperprovides a convenient implementation of theResourceResponseinterface that can be subclassed by developers.classStateAwareResponseWrapperTheStateAwareResponseWrapperprovides a convenient implementation of theStateAwareResponseinterface that can be subclassed by developers.Methods in jakarta.portlet.filter that return PortletResponse Modifier and Type Method Description PortletResponsePortletResponseWrapper. getResponse()Return the wrapped response object.Methods in jakarta.portlet.filter with parameters of type PortletResponse Modifier and Type Method Description voidPortletRequestDispatcherWrapper. forward(PortletRequest request, PortletResponse response)voidPortletRequestDispatcherWrapper. include(PortletRequest request, PortletResponse response)voidPortletResponseWrapper. setResponse(PortletResponse response)Sets the response object being wrapped.Constructors in jakarta.portlet.filter with parameters of type PortletResponse Constructor Description PortletResponseWrapper(PortletResponse response)Creates anActionResponseadaptor wrapping the given response object.
-