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