Package lumis.lptf.doui.serviceinterface
Interface IDouiRenderRequestCycle
-
- All Superinterfaces:
IDouiRequestCycle
,IRenderRequestCycle
,IRequestCycle
@StableMinor(version="14.0", sinceVersion="5.6") public interface IDouiRenderRequestCycle extends IDouiRequestCycle, IRenderRequestCycle
Interface for Doui 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 void
executeUntilLoadFromRequest()
Executes the Doui request cycle until load requisition information from request.void
executeUntilLoadSources()
Executes the Doui request cycle until load sources step.void
executeUntilRenderData()
Executes the Doui request cycle until render data step.boolean
executeUntilValidate()
Executes the Doui request cycle until validation.-
Methods inherited from interface lumis.lptf.doui.serviceinterface.IDouiRequestCycle
executeUntilDouiContextCreation, executeUntilInitDouiContext, getDouiContext
-
Methods inherited from interface lumis.lptf.portal.serviceinterface.IRenderRequestCycle
getRequest, getResponse, render
-
-
-
-
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)
-
executeUntilLoadSources
void executeUntilLoadSources() throws PortalException
Executes the Doui request cycle until load sources step.- 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)
-
executeUntilRenderData
void executeUntilRenderData() throws PortalException
Executes the Doui request cycle until render data step.- 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.renderBefore(lumis.portal.serviceinterface.IServiceInterfaceRenderRequest, lumis.portal.serviceinterface.IServiceInterfaceRenderResponse)
-
-