Package com.aquima.interactions.process
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 TypeMethodDescriptionThis method returns the value of the datafield, or null if non existing.This method returns an unmodifiable map of the message event fields.getName()
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
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
This method returns an unmodifiable map of the message event fields.
-