Interface IFunction

All Known Implementing Classes:
FlowFunction

public interface IFunction
Since:
10.3
  • Method Summary

    Modifier and Type
    Method
    Description
    The handle method of the function is allowed to make changes to the interfaces passed along with the IFunctionContext.
  • Method Details

    • handle

      IFunctionResult handle(IFunctionContext context) throws Exception
      The handle method of the function is allowed to make changes to the interfaces passed along with the IFunctionContext. This means the function context is changed accordingly.
      Parameters:
      context - the context in which the function is called and allowed to make changes.
      Returns:
      The result of this function, may be null.
      Throws:
      FunctionException - When an expected exception occurs and the portal should display certain messages.
      Exception - When an unexpected exception occurs and the portal should display a standard message.