Package com.aquima.interactions.process
Class MessageEvent
java.lang.Object
com.aquima.interactions.process.MessageEvent
- All Implemented Interfaces:
IMessageEvent
Default implementation for the message event.
- Since:
- 9.1
- Author:
- A. Pragt
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSets a field to a value.This method returns the value of the datafield, or null if non existing.Normally this would be an unmodifiable map, but .NET does not support it.getName()
This method returns the name of the event, may not be null.
-
Constructor Details
-
MessageEvent
-
-
Method Details
-
getName
Description copied from interface:IMessageEvent
This method returns the name of the event, may not be null.- Specified by:
getName
in interfaceIMessageEvent
- Returns:
- The name of the event, never null.
-
getField
Description copied from interface:IMessageEvent
This method returns the value of the datafield, or null if non existing.- Specified by:
getField
in interfaceIMessageEvent
- Parameters:
name
- The name of the datafield.- Returns:
- The value of the data field, or null.
-
addField
Sets a field to a value.- Parameters:
name
- The name of the field, never null.value
- The value of the field, never null.- Returns:
- this message event for method chaining
-
getFields
Normally this would be an unmodifiable map, but .NET does not support it.- Specified by:
getFields
in interfaceIMessageEvent
-