Interface IFlowParameterVisitor

All Known Implementing Classes:
FlowParameterVisitor, ReportingFlowParameterVisitor

public interface IFlowParameterVisitor
Visitor to add parameters to a flow datasource. Parameters should be used in conjunction with the NodeFactory, as the optional parameters will be ignored by the default implementation.
Since:
7.2
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setParameter(String name, String strValue)
    Method to set a single valued parameter value.
    void
    setParameter(String name, String[] values)
    Method to set a multi valued parameter value.
  • Method Details

    • setParameter

      void setParameter(String name, String strValue)
      Method to set a single valued parameter value.
      Parameters:
      name - The name of the parameter, may not be null.
      strValue - The value of the parameter, may be null.
    • setParameter

      void setParameter(String name, String[] values)
      Method to set a multi valued parameter value.
      Parameters:
      name - The name of the parameter, may not be null.
      values - The values of the parameter, may be null.