Package lumis.lptf.doui.serviceinterface
Interface IDouiActionRequestCycle
-
- All Superinterfaces:
IActionRequestCycle
,IDouiRequestCycle
,IRequestCycle
@StableMinor(version="14.0", sinceVersion="5.6") public interface IDouiActionRequestCycle extends IDouiRequestCycle, IActionRequestCycle
Interface for Doui 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 void
executeUntilLoadFromRequest()
Executes the Doui request cycle until load requisition information from request.void
executeUntilProcessActions()
Executes the Doui request cycle until the process actions step.boolean
executeUntilValidate()
Executes the Doui request cycle until validation.-
Methods inherited from interface lumis.lptf.portal.serviceinterface.IActionRequestCycle
getRequest, getResponse, processAction
-
Methods inherited from interface lumis.lptf.doui.serviceinterface.IDouiRequestCycle
executeUntilDouiContextCreation, executeUntilInitDouiContext, getDouiContext
-
-
-
-
Method Detail
-
executeUntilLoadFromRequest
void executeUntilLoadFromRequest() throws PortalException
Executes the Doui request cycle until load requisition information from request.- Throws:
PortalException
- if an error occur during the Doui request cycle execution.- Since:
- 5.6.0
- See Also:
DouiServiceInterface.render(lumis.portal.serviceinterface.IServiceInterfaceRenderRequest, lumis.portal.serviceinterface.IServiceInterfaceRenderResponse)
,DouiServiceInterface.processAction(lumis.portal.serviceinterface.IServiceInterfaceActionRequest, lumis.portal.serviceinterface.IServiceInterfaceActionResponse)
-
executeUntilValidate
boolean executeUntilValidate() throws PortalException
Executes the Doui request cycle until validation.- Returns:
- true if the validation is successful.
- Throws:
PortalException
- if an error occur during the Doui request cycle execution.- Since:
- 5.6.0
- See Also:
DouiServiceInterface.render(lumis.portal.serviceinterface.IServiceInterfaceRenderRequest, lumis.portal.serviceinterface.IServiceInterfaceRenderResponse)
,DouiServiceInterface.processAction(lumis.portal.serviceinterface.IServiceInterfaceActionRequest, lumis.portal.serviceinterface.IServiceInterfaceActionResponse)
-
executeUntilProcessActions
void executeUntilProcessActions() throws PortalException
Executes the Doui request cycle until the process actions step.- Throws:
PortalException
- if an error occur while processing actions.- Since:
- 5.6.0
- See Also:
DouiServiceInterface.processAction(lumis.portal.serviceinterface.IServiceInterfaceActionRequest, lumis.portal.serviceinterface.IServiceInterfaceActionResponse)
-
-