Interface IFunctionCallDefinition

All Known Implementing Classes:
FunctionCallDefinition

public interface IFunctionCallDefinition
This interface defines several methods that can be used to retrieve static information about a function call.
Since:
10.3
Author:
T. van der Griend
  • Method Details

    • getCallName

      String getCallName()
      This method returns the function call name.
      Returns:
      The function call name, never null.
    • getFlowReference

      FlowReference getFlowReference()
      This method returns the reference to the flow which the function call executes.
      Returns:
      The flow reference, never null.
    • getInputParameters

      FunctionCallInputParameter[] getInputParameters()
      This method returns the input parameters of the function call.
      Returns:
      The function call input parameters, never null.
    • getOutputParameters

      FunctionCallOutputParameter[] getOutputParameters()
      This method returns the output parameters of the function call.
      Returns:
      The function call output parameters, never null.