Uses of Interface
javax.portlet.PortletRequest
-
Packages that use PortletRequest 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 PortletRequest in javax.portlet
Subinterfaces of PortletRequest in javax.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.interfaceRenderRequestTheRenderRequestrepresents the request sent to the portlet to handle a render.interfaceResourceRequestTheResourceRequestinterface represents the request send to the portlet for rendering resources.Methods in javax.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 javax.portlet.filter
Classes in javax.portlet.filter that implement PortletRequest Modifier and Type Class Description classActionRequestWrapperTheActionRequestWrapperprovides a convenient implementation of theActionRequestinterface that can be subclassed by developers wishing to adapt the request.classEventRequestWrapperTheEventRequestWrapperprovides a convenient implementation of theEventRequestinterface that can be subclassed by developers wishing to adapt the request.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 wishing to adapt the request.classResourceRequestWrapperTheResourceRequestWrapperprovides a convenient implementation of theResourceRequestinterface that can be subclassed by developers wishing to adapt the request.Methods in javax.portlet.filter that return PortletRequest Modifier and Type Method Description PortletRequestPortletRequestWrapper. getRequest()Return the wrapped request object.Methods in javax.portlet.filter with parameters of type PortletRequest Modifier and Type Method Description voidPortletRequestWrapper. setRequest(PortletRequest request)Sets the request object being wrapped.Constructors in javax.portlet.filter with parameters of type PortletRequest Constructor Description PortletRequestWrapper(PortletRequest request)Creates anPortletRequestadaptor wrapping the given request object.
-