Uses of Interface
jakarta.portlet.PortletRequest
-
Packages that use PortletRequest 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 PortletRequest in jakarta.portlet
Subinterfaces of PortletRequest in jakarta.portlet Modifier and Type Interface Description interfaceActionRequestTheActionRequestrepresents the request sent to the portlet to handle an action.
It extends the ClientDataRequest interface and provides action request information to portlets.interfaceClientDataRequestTheClientDataRequestrepresents the request information of the HTTP request issued from the client to the portal.
It extends the PortletRequest interface.interfaceEventRequestTheEventRequestrepresents the request sent to the portlet to handle an event.interfaceHeaderRequestTag interface designating a header request object.interfaceRenderRequestTheRenderRequestrepresents the request sent to the portlet to handle a render.interfaceResourceRequestTheResourceRequestinterface represents the request send to the portlet for rendering resources.Methods in jakarta.portlet with parameters of type PortletRequest 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 PortletRequest in jakarta.portlet.filter
Classes in jakarta.portlet.filter that implement PortletRequest Modifier and Type Class Description classActionRequestWrapperTheActionRequestWrapperprovides a convenient implementation of theActionRequestinterface that can be subclassed by developers.classClientDataRequestWrapperTheClientDataRequestWrapperprovides a convenient implementation of theClientDataRequestinterface that can be subclassed by developers.classEventRequestWrapperTheEventRequestWrapperprovides a convenient implementation of theEventRequestinterface that can be subclassed by developers.classHeaderRequestWrapperTheHeaderRequestWrapperprovides a convenient implementation of theHeaderRequestinterface that can be subclassed by developers.classPortletRequestWrapperThePortletRequestWrapperprovides a convenient implementation of thePortletRequestinterface and is extended by other request wrappers.classRenderRequestWrapperTheRenderRequestWrapperprovides a convenient implementation of theRenderRequestinterface that can be subclassed by developers.classResourceRequestWrapperTheResourceRequestWrapperprovides a convenient implementation of theResourceRequestinterface that can be subclassed by developers.Methods in jakarta.portlet.filter that return PortletRequest Modifier and Type Method Description PortletRequestPortletRequestWrapper. getRequest()Return the wrapped request object.Methods in jakarta.portlet.filter with parameters of type PortletRequest Modifier and Type Method Description voidPortletRequestDispatcherWrapper. forward(PortletRequest request, PortletResponse response)voidPortletRequestDispatcherWrapper. include(PortletRequest request, PortletResponse response)voidPortletRequestWrapper. setRequest(PortletRequest request)Sets the request object being wrapped.Constructors in jakarta.portlet.filter with parameters of type PortletRequest Constructor Description PortletRequestWrapper(PortletRequest request)Creates anPortletRequestadaptor wrapping the given request object.
-