Interface IMockServiceInterfaceResponse
-
- All Superinterfaces:
IServiceInterfaceResponse
,IURLFactory
,PortletResponse
- All Known Subinterfaces:
IMockServiceInterfaceActionResponse
,IMockServiceInterfaceRenderResponse
- All Known Implementing Classes:
MockServiceInterfaceActionResponse
,MockServiceInterfaceRenderResponse
@StableMinor(version="14.0", sinceVersion="5.6") public interface IMockServiceInterfaceResponse extends IServiceInterfaceResponse
Interface for aIServiceInterfaceResponse
mock object.- Since:
- 5.6.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Cookie>
getCookieMap()
Returns a map containing the cookies set in this response.void
setNamespace(String namespace)
Sets the namespace string returned byPortletResponse.getNamespace()
.-
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
-
-
-
-
Method Detail
-
getCookieMap
Map<String,Cookie> getCookieMap()
Returns a map containing the cookies set in this response.- Returns:
- the map with the cookies. The key is the cookie name and the value is the cookie object.
- Since:
- 5.6.0
- See Also:
IServiceInterfaceResponse.addCookie(Cookie)
,IServiceInterfaceResponse.deleteCookie(Cookie)
-
setNamespace
void setNamespace(String namespace)
Sets the namespace string returned byPortletResponse.getNamespace()
.- Parameters:
namespace
- the namespace.- Since:
- 5.6.0
-
-