|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The 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 service represents an abstract layer to make the property
management independent of the portlet container and to allow
diverse special implementations.
This SPI interface can be implemented by the portal.
Method Summary | |
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. |
Method Detail |
public 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.public java.util.Map getRequestProperties(PortletWindow window, javax.servlet.http.HttpServletRequest request)
window
- the portlet window of this propertyrequest
- the servlet request
Map
containing
all properties. If there are no properties of
that name returns an empty Map
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |