Interface IParameterDS

All Superinterfaces:
IReportingDS
All Known Implementing Classes:
XmlParameterDS, XmlParameterDS

public interface IParameterDS extends IReportingDS
This interface is used to initialize a single parameter definition.
Since:
7.1
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the direction of the parameter.
    This method returns the name of the parameter.
    This method returns the type of the parameter.
    boolean
    This method returns a boolean indicating if this parameter may have multiple values.
    boolean
    This method returns a boolean indicating if a value for this parameter is required or optional.

    Methods inherited from interface com.aquima.interactions.foundation.report.IReportingDS

    addMessage
  • Method Details

    • getName

      String getName()
      This method returns the name of the parameter.
      Returns:
      The name of the parameter.
    • getType

      ParameterType getType()
      This method returns the type of the parameter.
      Returns:
      The type of the parameter.
    • getDirection

      Direction getDirection()
      This method returns the direction of the parameter.
      Returns:
      The direction of the parameter.
    • isMultivalue

      boolean isMultivalue()
      This method returns a boolean indicating if this parameter may have multiple values.
      Returns:
      Boolean indicating if this parameter may have multiple values.
    • isRequired

      boolean isRequired()
      This method returns a boolean indicating if a value for this parameter is required or optional.
      Returns:
      Boolean indicating if a value for this parameter is required.