Interface IMessageEvent

All Known Implementing Classes:
MessageEvent, TriggeredMessageEvent

public interface IMessageEvent
This interface defines a message event for the process engine.
Since:
9.1
Author:
a.pragt
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the value of the datafield, or null if non existing.
    This method returns an unmodifiable map of the message event fields.
    This method returns the name of the event, may not be null.
  • Method Details

    • getName

      String getName()
      This method returns the name of the event, may not be null.
      Returns:
      The name of the event, never null.
    • getField

      IValue getField(String name)
      This method returns the value of the datafield, or null if non existing.
      Parameters:
      name - The name of the datafield.
      Returns:
      The value of the data field, or null.
    • getFields

      Map<String,IValue> getFields()
      This method returns an unmodifiable map of the message event fields.
      Returns:
      an unmodifiable map of the message event fields.