public class HeaderResponseWrapper extends MimeResponseWrapper implements HeaderResponse
HeaderResponseWrapper
provides a convenient implementation of the HeaderResponse
interface that can be subclassed by developers.
This class implements the Wrapper or Decorator pattern. Methods default to
calling through to the wrapped Response object. MimeResponse.Copy
CACHE_SCOPE, ETAG, EXPIRATION_CACHE, MARKUP_HEAD_ELEMENT, NAMESPACED_RESPONSE, PRIVATE_SCOPE, PUBLIC_SCOPE, USE_CACHED_CONTENT
Constructor and Description |
---|
HeaderResponseWrapper(HeaderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
addDependency(String name,
String scope,
String version)
Adds a dependency on a page-level resource that is managed by the portal.
|
void |
addDependency(String name,
String scope,
String version,
String markup)
Adds a dependency on a page-level resource that is managed by the portal
and adds a resource for addition to the page for the dependency.
|
HeaderResponse |
getResponse()
Return the wrapped response object.
|
void |
setResponse(HeaderResponse response)
Sets the response object being wrapped.
|
void |
setTitle(String title)
This method sets the title of the portlet.
|
createActionURL, createActionURL, createRenderURL, createRenderURL, createResourceURL, flushBuffer, getBufferSize, getCacheControl, getCharacterEncoding, getContentType, getLocale, getPortletOutputStream, getWriter, isCommitted, reset, resetBuffer, setBufferSize, setContentType, setResponse
addProperty, addProperty, addProperty, createElement, encodeURL, getNamespace, getProperty, getPropertyNames, getPropertyValues, setProperty, setResponse
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getPortletOutputStream, getWriter, setContentType
createActionURL, createActionURL, createRenderURL, createRenderURL, createResourceURL, flushBuffer, getBufferSize, getCacheControl, getCharacterEncoding, getContentType, getLocale, isCommitted, reset, resetBuffer, setBufferSize
addProperty, addProperty, addProperty, createElement, encodeURL, getNamespace, getProperty, getPropertyNames, getPropertyValues, setProperty
public HeaderResponseWrapper(HeaderResponse response)
response
- public HeaderResponse getResponse()
getResponse
in class MimeResponseWrapper
public void setResponse(HeaderResponse response)
response
- the response to setIllegalArgumentException
- if the response is null.public void setTitle(String title)
HeaderResponse
The value can be a text String
setTitle
in interface HeaderResponse
title
- portlet title as text String or resource URIpublic void addDependency(String name, String scope, String version)
HeaderResponse
When a portlet is aggregated onto a page, it may designate resources such as
JavaScript files or style sheets
that it needs to have on the page in order to operate correctly.
These resources typically should be added to the aggregated document head
section.
Such resources are known as portlet dependencies.
The portal implementation is responsible for adding the portlet dependencies to the page during aggregation. The resources declared as dependencies are typically such that they should be added to the page only a single time, but may be used by multiple portlets.
Portlet dependencies may be configured statically either through annotations or through the portlet deployment descriptor. The resources to satisfy such dependencies will be made available on all pages on which the portlet is rendered.
The dependency added dynamically through this method is added to the statically declared dependencies for the portlet for the current rendering cycle only.
This method should only be used to add portlet dependencies that can potentially be
required by or shared with other portlets as well.
Strictly private dependencies, such as JavaScript code needed by this portlet only,
should be added to to document head section using the
PortletResponse#addProperty(String, Element)
method or by using either the
PrintWriter
or OutputStream
object obtained
through the HeaderResponse
.
The manner in which the portal maps the specified name, scope, and version to specific resources is left to the portal implementation.
addDependency
in interface HeaderResponse
name
- the resource namescope
- the resource scope, may be null
or emptyversion
- the resource version, may be null
or emptyPortletResponse.addProperty(String, org.w3c.dom.Element)
,
HeaderResponse.getWriter()
,
HeaderResponse.getPortletOutputStream()
public void addDependency(String name, String scope, String version, String markup)
HeaderResponse
See HeaderResponse.addDependency(String, String, String)
for a discussion of
dependencies.
The specified markup element representing the resource must be suitable for inclusion
in the aggregated portal document HEAD
section.
It will generally be either a LINK
or SCRIPT
tag.
This method does not directly place markup into the aggregated page document. The aggregating portal will use the identifying information name, scope, and version along with identifying information for other available page resources to determine which resources will be added to the page.
For example, if a portlet provides a resource with a version of 2.0.0 but another portlet on the same page provides a resource with the same name and scope but a version of 2.1.0, the aggregating portal may choose to include the later version of the resource on the page.
addDependency
in interface HeaderResponse
name
- the resource namescope
- the resource scope, may be null
or emptyversion
- the resource version, may be null
or emptymarkup
- the markup for adding the resource to the pageJava Portlet 3.0 API Specification. See the Copyright and License provided with this distribution. Use is subject to license terms.