| java.lang.Object org.apache.cocoon.portal.pluto.services.PropertyManagerServiceImpl
PropertyManagerServiceImpl | public class PropertyManagerServiceImpl implements PropertyManagerService(Code) | | Dummy property manager service. Since vendor specific information from
the portlets is not needed they are discarded.
See Also: javax.portlet.PortletResponse.addProperty(StringString) See Also: javax.portlet.PortletResponse.setProperty(StringString) See Also: author: Michal Durdina version: CVS $Id: PropertyManagerServiceImpl.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
public Map | getRequestProperties(PortletWindow window, HttpServletRequest request) Returns all properties for the given portlet window
defined in the portal as String/String array map.
They will be made available to the portlet through the
portlet request.
The purpose of this method is to allow the portal framework
to create a map of properties and make it available to the portlet container.
This method can be called multiple times during one request by the portlet container
The return value cannot be null.
Parameters: window - the portlet window of this property Parameters: request - the servlet request a Map containingall properties. | public void | setResponseProperties(PortletWindow window, HttpServletRequest request, HttpServletResponse response, Map properties) Sets the given property map defined by the portlet window in its response. |
getRequestProperties | public Map getRequestProperties(PortletWindow window, HttpServletRequest request)(Code) | | Returns all properties for the given portlet window
defined in the portal as String/String array map.
They will be made available to the portlet through the
portlet request.
The purpose of this method is to allow the portal framework
to create a map of properties and make it available to the portlet container.
This method can be called multiple times during one request by the portlet container
The return value cannot be null.
Parameters: window - the portlet window of this property Parameters: request - the servlet request a Map containingall properties. If there are no properties ofthat name returns an empty Map . |
setResponseProperties | public void setResponseProperties(PortletWindow window, HttpServletRequest request, HttpServletResponse response, Map properties)(Code) | | Sets the given property map defined by the portlet window in its response.
The purpose of this method is to provide the portal framework
with a new map of properties set by the portlet. The map can be empty, but not NULL
This method can be called multiple times during one request by the portlet container
Parameters: window - the portlet window of this property Parameters: request - the servlet request Parameters: response - the servlet response Parameters: properties - the String/String array map containing theproperties to be set. |
|
|