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 | Method and Description |
---|---|
void |
GenericPortlet.renderHeaders(HeaderRequest request,
HeaderResponse response)
V3 method implementing the headers stage within the render phase.
|
void |
HeaderPortlet.renderHeaders(HeaderRequest request,
HeaderResponse response)
Called by the portlet container to allow the portlet to set response
headers and generate markup for overall response document head section.
|
Modifier and Type | Class and Description |
---|---|
class |
HeaderRequestWrapper
The
HeaderRequestWrapper provides a convenient
implementation of the HeaderRequest interface
that can be subclassed by developers. |
Modifier and Type | Method and Description |
---|---|
HeaderRequest |
HeaderRequestWrapper.getRequest()
Return the wrapped request object.
|
Modifier and Type | Method and Description |
---|---|
void |
HeaderFilterChain.doFilter(HeaderRequest request,
HeaderResponse response)
Causes the next filter in the chain to be invoked,
or if the calling filter is the last filter in the chain,
causes the portlet at the end of the chain to be invoked.
|
void |
HeaderFilter.doFilter(HeaderRequest request,
HeaderResponse response,
HeaderFilterChain chain)
The
doFilter method of the Filter is called by the
portlet container each time a header request/response pair is passed
through the chain due to a client request for a portlet method
at the end of the chain. |
void |
HeaderRequestWrapper.setRequest(HeaderRequest request)
Sets the request object being wrapped.
|
Constructor and Description |
---|
HeaderRequestWrapper(HeaderRequest request)
Creates an
HeaderRequest 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.