Class RenderRequestCycle
- java.lang.Object
-
- lumis.lptf.portal.serviceinterface.RequestCycle
-
- lumis.lptf.portal.serviceinterface.RenderRequestCycle
-
- All Implemented Interfaces:
IRenderRequestCycle
,IRequestCycle
public class RenderRequestCycle extends RequestCycle implements IRenderRequestCycle
Represents the render request cycle - containing mocks for request and response and performing render operations.- Since:
- 5.6.0
- Version:
- $Revision: 14633 $ $Date: 2012-08-20 13:57:58 -0300 (Mon, 20 Aug 2012) $
-
-
Field Summary
-
Fields inherited from class lumis.lptf.portal.serviceinterface.RequestCycle
serviceInterface
-
-
Constructor Summary
Constructors Constructor Description RenderRequestCycle()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IMockServiceInterfaceRenderRequest
getRequest()
Return the request used when processing this request cycle.IMockServiceInterfaceRenderResponse
getResponse()
Return 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.-
Methods inherited from class lumis.lptf.portal.serviceinterface.RequestCycle
init
-
-
-
-
Method Detail
-
getRequest
public IMockServiceInterfaceRenderRequest getRequest()
Description copied from class:RequestCycle
Return the request used when processing this request cycle.- Specified by:
getRequest
in interfaceIRenderRequestCycle
- Specified by:
getRequest
in interfaceIRequestCycle
- Specified by:
getRequest
in classRequestCycle
- Returns:
- this cycle's request.
-
getResponse
public IMockServiceInterfaceRenderResponse getResponse()
Description copied from class:RequestCycle
Return the response used when processing this request cycle.- Specified by:
getResponse
in interfaceIRenderRequestCycle
- Specified by:
getResponse
in interfaceIRequestCycle
- Specified by:
getResponse
in classRequestCycle
- Returns:
- this cycle's response.
-
render
public void render() throws PortalException
Description copied from interface:IRenderRequestCycle
Call therender
method of a service interface using this cycle's request and response objects.- Specified by:
render
in interfaceIRenderRequestCycle
- Throws:
PortalException
- if therender
method throws it.
-
-