Package lumis.portal.serviceinterface
Interface IServiceInterfaceActionResponseSPI
-
- All Superinterfaces:
javax.portlet.ActionResponse
,IServiceInterfaceActionResponse
,IServiceInterfaceResponse
,IServiceInterfaceResponseSPI
,IURLFactory
,javax.portlet.PortletResponse
,javax.portlet.StateAwareResponse
- All Known Implementing Classes:
MockServiceInterfaceActionResponse
,ServiceContainerActionResponse
public interface IServiceInterfaceActionResponseSPI extends IServiceInterfaceActionResponse, IServiceInterfaceResponseSPI
Service Interface Action Response SPI- Since:
- 8.0.0
- Version:
- $Revision: 25153 $ $Date: 2022-07-24 19:17:04 -0300 (Sun, 24 Jul 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setStatusInternal(int statusCode, java.lang.String message)
Sets the status code and message for this action response.-
Methods inherited from interface lumis.portal.serviceinterface.IServiceInterfaceActionResponse
getRenderParameter, getRenderParameters
-
Methods inherited from interface lumis.portal.serviceinterface.IServiceInterfaceResponse
addCookie, deleteCookie
-
Methods inherited from interface lumis.portal.serviceinterface.IServiceInterfaceResponseSPI
getServiceContainerHttpServletResponse
-
Methods inherited from interface lumis.portal.url.IURLFactory
createActionURL, createPortalURL, createRenderURL
-
-
-
-
Method Detail
-
setStatusInternal
void setStatusInternal(int statusCode, java.lang.String message)
Sets the status code and message for this action response. This is a temporary implementation that is used exclusively for requests with accept: application/json header. This code and message will be returned in the http response headers in this case. The final support for setting response status will be available in the future.- Parameters:
statusCode
- the status code for the responsemessage
- the message- Since:
- 8.0.0
-
-