Interface IRenderRequestCycle
-
- All Superinterfaces:
IRequestCycle
- All Known Subinterfaces:
IDouiRenderRequestCycle
- All Known Implementing Classes:
RenderRequestCycle
@StableMinor(version="14.0", sinceVersion="5.6") public interface IRenderRequestCycle extends IRequestCycle
Interface for the render request cycle.- 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 IMockServiceInterfaceRenderRequest
getRequest()
Returns the request used when processing this request cycle.IMockServiceInterfaceRenderResponse
getResponse()
Returns the response used when processing this request cycle.void
render()
Call therender
method of a service interface using this cycle's request and response objects.
-
-
-
Method Detail
-
getRequest
IMockServiceInterfaceRenderRequest getRequest()
Description copied from interface:IRequestCycle
Returns the request used when processing this request cycle.- Specified by:
getRequest
in interfaceIRequestCycle
- Returns:
- the request.
-
getResponse
IMockServiceInterfaceRenderResponse getResponse()
Description copied from interface:IRequestCycle
Returns the response used when processing this request cycle.- Specified by:
getResponse
in interfaceIRequestCycle
- Returns:
- the response.
-
render
void render() throws PortalException
Call therender
method of a service interface using this cycle's request and response objects.- Throws:
PortalException
- if therender
method throws it.- Since:
- 5.6.0
-
-