Interface IPortalMessageFieldDefinition

All Superinterfaces:
Serializable
All Known Implementing Classes:
PortalMessageFieldDefinition

public interface IPortalMessageFieldDefinition extends Serializable
This interface defines 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 field, may not be null.
    boolean
    This method indicates whether this field may be multivalued or not.
    boolean
    This method indicates whether this field is required or not.
  • Method Details

    • getName

      String getName()
      This method returns the name of the field, 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 indicates whether this field may be multivalued or not.
      Returns:
      Indicator whether the field allow multivalued values.
    • isRequired

      boolean isRequired()
      This method indicates whether this field is required or not.
      Returns:
      Indicator whether the field is required.