Interface IPortalMessageFieldDS

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

public interface IPortalMessageFieldDS extends IReportingDS
This interface represents a data field of a portal message.
Since:
9.2
Author:
m.mahabiersing
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the datatype of the field, may not be null.
    This method returns the name of the portal message, may not be null.
    boolean
    This method returns an indicator whether this field allows multivalued data.
    boolean
    This method indicates whether this field is required.

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

    addMessage
  • Method Details

    • getName

      String getName()
      This method returns the name of the portal message, may not be null.
      Returns:
      The name of the field, never null.
    • getDataType

      DataType getDataType()
      This method returns the datatype of the field, may not be null.
      Returns:
      The datatype of the field, never null.
    • isAllowMultivalued

      boolean isAllowMultivalued()
      This method returns an indicator whether this field allows multivalued data.
      Returns:
      Indicator whether multivalued data is allowed.
    • isRequired

      boolean isRequired()
      This method indicates whether this field is required.
      Returns:
      Required indicator.