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 interface
ActionRequest
TheActionRequest
represents the request sent to the portlet to handle an action.
It extends the ClientDataRequest interface and provides action request information to portlets.interface
ClientDataRequest
TheClientDataRequest
represents the request information of the HTTP request issued from the client to the portal.
It extends the PortletRequest interface.interface
EventRequest
TheEventRequest
represents the request sent to the portlet to handle an event.interface
RenderRequest
TheRenderRequest
represents the request sent to the portlet to handle a render.interface
ResourceRequest
TheResourceRequest
interface represents the request send to the portlet for rendering resources.Methods in javax.portlet with parameters of type PortletRequest 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 PortletRequest in javax.portlet.filter
Classes in javax.portlet.filter that implement PortletRequest Modifier and Type Class Description class
ActionRequestWrapper
TheActionRequestWrapper
provides a convenient implementation of theActionRequest
interface that can be subclassed by developers wishing to adapt the request.class
EventRequestWrapper
TheEventRequestWrapper
provides a convenient implementation of theEventRequest
interface that can be subclassed by developers wishing to adapt the request.class
PortletRequestWrapper
ThePortletRequestWrapper
provides a convenient implementation of thePortletRequest
interface and is extended by other request wrappers.class
RenderRequestWrapper
TheRenderRequestWrapper
provides a convenient implementation of theRenderRequest
interface that can be subclassed by developers wishing to adapt the request.class
ResourceRequestWrapper
TheResourceRequestWrapper
provides a convenient implementation of theResourceRequest
interface that can be subclassed by developers wishing to adapt the request.Fields in javax.portlet.filter declared as PortletRequest Modifier and Type Field Description (package private) PortletRequest
PortletRequestWrapper. request
Methods in javax.portlet.filter that return PortletRequest Modifier and Type Method Description PortletRequest
PortletRequestWrapper. getRequest()
Return the wrapped request object.Methods in javax.portlet.filter with parameters of type PortletRequest Modifier and Type Method Description void
PortletRequestWrapper. 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 anPortletRequest
adaptor wrapping the given request object.
-