Interface IWebFunctionEnhancer
-
- All Known Implementing Classes:
NoOpWebFunctionEnhancer
public interface IWebFunctionEnhancer
Interface that allows execution of custom code before(or after) various phases of normal function flow execution. The WebFunctionEnhancer gives access to theFunctionCallContext
and theIProfile
.- Since:
- 11.6
- Author:
- Mihai Bob
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
beforeMappingInput(FunctionCallContext context)
This method is executed before mapping the input to the profilevoid
beforeStartingFlow(FunctionCallContext context)
This method is executed before starting the flow but after the input was mapped to the profile
-
-
-
Method Detail
-
beforeMappingInput
void beforeMappingInput(FunctionCallContext context)
This method is executed before mapping the input to the profile- Parameters:
context
- - gives access to the portal context
-
beforeStartingFlow
void beforeStartingFlow(FunctionCallContext context)
This method is executed before starting the flow but after the input was mapped to the profile- Parameters:
context
- - gives access to the portal context
-
-