public interface PropertyManagerService extends ContainerService
PropertyManagerService
interface is a container service
providing the portlet container with external defined properties.
This interface allows to associate properties with the portlet request
and portlet response.
This SPI interface can be implemented by the portal.
Modifier and Type | Method and Description |
---|---|
java.util.Map |
getRequestProperties(PortletWindow window,
javax.servlet.http.HttpServletRequest request)
Returns all properties for the given portlet window
defined in the portal as String/String array map.
|
void |
setResponseProperties(PortletWindow window,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
java.util.Map properties)
Sets the given property map defined by the portlet window in its response.
|
void setResponseProperties(PortletWindow window, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.util.Map properties)
window
- the portlet window of this propertyrequest
- the servlet requestresponse
- the servlet responseproperties
- the String/String array map containing the
properties to be set.java.util.Map getRequestProperties(PortletWindow window, javax.servlet.http.HttpServletRequest request)
window
- the portlet window of this propertyrequest
- the servlet requestMap
containing
all properties. If there are no properties of
that name returns an empty Map
.Copyright © 2003-2013 . All Rights Reserved.