Package lumis.portal.serviceinterface
Interface IServiceInterfaceActionResponse
-
- All Superinterfaces:
javax.portlet.ActionResponse
,IServiceInterfaceResponse
,IURLFactory
,javax.portlet.PortletResponse
,javax.portlet.StateAwareResponse
- All Known Subinterfaces:
IMockServiceInterfaceActionResponse
,IServiceInterfaceActionResponseSPI
- All Known Implementing Classes:
MockServiceInterfaceActionResponse
,ServiceContainerActionResponse
@StableMinor(version="15.0", sinceVersion="4.0") public interface IServiceInterfaceActionResponse extends IServiceInterfaceResponse, javax.portlet.ActionResponse
- Since:
- 4.0.0
- Version:
- $Revision: 25303 $ $Date: 2022-10-22 22:48:02 -0300 (Sat, 22 Oct 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String[]
getRenderParameter(java.lang.String key)
Deprecated.This method may be removed in the future.java.util.Map<java.lang.String,java.lang.String[]>
getRenderParameters()
Deprecated.This method may be removed in the future.-
Methods inherited from interface lumis.portal.serviceinterface.IServiceInterfaceResponse
addCookie, deleteCookie
-
Methods inherited from interface lumis.portal.url.IURLFactory
createActionURL, createPortalURL, createRenderURL
-
-
-
-
Method Detail
-
getRenderParameter
@Deprecated java.lang.String[] getRenderParameter(java.lang.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 java.util.Map<java.lang.String,java.lang.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:
-
-