Package lumis.portal.serviceinterface
Interface IServiceInterfaceActionResponse
-
- All Superinterfaces:
ActionResponse
,IServiceInterfaceResponse
,IURLFactory
,PortletResponse
,StateAwareResponse
- All Known Subinterfaces:
IMockServiceInterfaceActionResponse
,IServiceInterfaceActionResponseSPI
- All Known Implementing Classes:
MockServiceInterfaceActionResponse
,ServiceContainerActionResponse
@StableMinor(version="14.0", sinceVersion="4.0") public interface IServiceInterfaceActionResponse extends IServiceInterfaceResponse, ActionResponse
- Since:
- 4.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String[]
getRenderParameter(String key)
Deprecated.This method may be removed in the future.Map<String,String[]>
getRenderParameters()
Deprecated.This method may be removed in the future.-
Methods inherited from interface javax.portlet.ActionResponse
sendRedirect, sendRedirect
-
Methods inherited from interface lumis.portal.serviceinterface.IServiceInterfaceResponse
addCookie, deleteCookie
-
Methods inherited from interface lumis.portal.url.IURLFactory
createActionURL, createPortalURL, createRenderURL
-
Methods inherited from interface javax.portlet.PortletResponse
addProperty, addProperty, addProperty, createElement, encodeURL, getNamespace, setProperty
-
Methods inherited from interface javax.portlet.StateAwareResponse
getPortletMode, getRenderParameterMap, getWindowState, removePublicRenderParameter, setEvent, setEvent, setPortletMode, setRenderParameter, setRenderParameter, setRenderParameters, setWindowState
-
-
-
-
Method Detail
-
getRenderParameter
@Deprecated String[] getRenderParameter(String key)
Deprecated.This method may be removed in the future. If the render parameter set needs to be read, consider storing it somewhere else, for example, as a request attribute. For better backwards compatibility in the doui framework, if the argument is "itemId" and no such render parameter exists, it is also searched in the request attributes.Returns the parameter previously set by the setRenderParameter methods. This method is usually used by chained process actions that need to read previously set render parameters.- Parameters:
key
-- Returns:
-
getRenderParameters
@Deprecated Map<String,String[]> getRenderParameters()
Deprecated.This method may be removed in the future. If the render parameter set needs to be read, consider storing it somewhere else, for example, as a request attribute. For better backwards compatibility in the doui framework, if no "itemId" render parameter exists, it is also searched in the request attributes.Returns all the parameters previously set by the setRenderParameter methods. This method is usually used by chained process actions that need to read previously set render parameters.- Returns:
-
-