Package | Description |
---|---|
javax.portlet |
The javax.portlet package defines the API
for the Java Portlet Specification V3.0.
|
javax.portlet.filter |
The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ActionRequest
The
ActionRequest 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
The
ClientDataRequest represents the request information
of the HTTP request issued from the client to the portal.It extends the PortletRequest interface. |
interface |
EventRequest
The
EventRequest represents the request sent to the portlet
to handle an event. |
interface |
HeaderRequest
Tag interface designating a header request object.
|
interface |
RenderRequest
The
RenderRequest represents the request sent to the portlet
to handle a render. |
interface |
ResourceRequest
The
ResourceRequest interface represents the request
send to the portlet for rendering resources. |
Modifier and Type | Method and 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.
|
Modifier and Type | Class and Description |
---|---|
class |
ActionRequestWrapper
The
ActionRequestWrapper provides a convenient
implementation of the ActionRequest interface
that can be subclassed by developers. |
class |
ClientDataRequestWrapper
The
ClientDataRequestWrapper
provides a convenient implementation of the ClientDataRequest
interface that can be subclassed by developers. |
class |
EventRequestWrapper
The
EventRequestWrapper provides a convenient
implementation of the EventRequest interface
that can be subclassed by developers. |
class |
HeaderRequestWrapper
The
HeaderRequestWrapper provides a convenient
implementation of the HeaderRequest interface
that can be subclassed by developers. |
class |
PortletRequestWrapper
The
PortletRequestWrapper provides a convenient
implementation of the PortletRequest interface
and is extended by other request wrappers. |
class |
RenderRequestWrapper
The
RenderRequestWrapper provides a convenient
implementation of the RenderRequest interface
that can be subclassed by developers. |
class |
ResourceRequestWrapper
The
ResourceRequestWrapper provides a convenient
implementation of the ResourceRequest interface
that can be subclassed by developers. |
Modifier and Type | Method and Description |
---|---|
PortletRequest |
PortletRequestWrapper.getRequest()
Return the wrapped request object.
|
Modifier and Type | Method and Description |
---|---|
void |
PortletRequestDispatcherWrapper.forward(PortletRequest request,
PortletResponse response) |
void |
PortletRequestDispatcherWrapper.include(PortletRequest request,
PortletResponse response) |
void |
PortletRequestWrapper.setRequest(PortletRequest request)
Sets the request object being wrapped.
|
Constructor and Description |
---|
PortletRequestWrapper(PortletRequest request)
Creates an
PortletRequest adaptor
wrapping the given request object. |
Java Portlet 3.0 API Specification. See the Copyright and License provided with this distribution. Use is subject to license terms.