| 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. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | ActionRequestThe  ActionRequestrepresents the request sent to the portlet
 to handle an action.It extends the ClientDataRequest interface and provides action request information to portlets. | 
| interface  | ClientDataRequestThe  ClientDataRequestrepresents the request information 
 of the HTTP request issued from the client to the portal.It extends the PortletRequest interface. | 
| interface  | EventRequestThe  EventRequestrepresents the request sent to the portlet
 to handle an event. | 
| interface  | RenderRequestThe  RenderRequestrepresents the request sent to the portlet
 to handle a render. | 
| interface  | ResourceRequestThe  ResourceRequestinterface 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  | ActionRequestWrapperThe  ActionRequestWrapperprovides a convenient 
 implementation of theActionRequestinterface 
 that can be subclassed by developers wishing to adapt the request. | 
| class  | EventRequestWrapperThe  EventRequestWrapperprovides a convenient 
 implementation of theEventRequestinterface 
 that can be subclassed by developers wishing to adapt the request. | 
| class  | PortletRequestWrapperThe  PortletRequestWrapperprovides a convenient 
 implementation of thePortletRequestinterface 
 and is extended by other request wrappers. | 
| class  | RenderRequestWrapperThe  RenderRequestWrapperprovides a convenient 
 implementation of theRenderRequestinterface 
 that can be subclassed by developers wishing to adapt the request. | 
| class  | ResourceRequestWrapperThe  ResourceRequestWrapperprovides a convenient 
 implementation of theResourceRequestinterface 
 that can be subclassed by developers wishing to adapt the request. | 
| Modifier and Type | Method and Description | 
|---|---|
| PortletRequest | PortletRequestWrapper. getRequest()Return the wrapped request object. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | PortletRequestWrapper. setRequest(PortletRequest request)Sets the request object being wrapped. | 
| Constructor and Description | 
|---|
| PortletRequestWrapper(PortletRequest request)Creates an  PortletRequestadaptor 
 wrapping the given request object. | 
Copyright © 2004–2015 The Apache Software Foundation. All rights reserved.