Class MessageEventDefinition
java.lang.Object
com.aquima.interactions.process.impl.MessageEventDefinition
- All Implemented Interfaces:
IMessageEventDefinition
This class contains a single message event definition.
- Since:
- 9.1
- Author:
- A. Pragt
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
addField
(MessageEventFieldDefinition fieldDefinition) This method returns the definition of the datafield.String[]
This method returns the names of the data fields, may not be null.getName()
This method returns the name of the message event, may not be null.
-
Constructor Details
-
MessageEventDefinition
-
-
Method Details
-
getName
Description copied from interface:IMessageEventDefinition
This method returns the name of the message event, may not be null.- Specified by:
getName
in interfaceIMessageEventDefinition
- Returns:
- The name of the event, never null.
-
getFieldNames
Description copied from interface:IMessageEventDefinition
This method returns the names of the data fields, may not be null. s- Specified by:
getFieldNames
in interfaceIMessageEventDefinition
- Returns:
- The names of the data fields, never null.
-
getField
Description copied from interface:IMessageEventDefinition
This method returns the definition of the datafield.- Specified by:
getField
in interfaceIMessageEventDefinition
- Parameters:
name
- The name of the data field.- Returns:
- The definition of the data field.
- Throws:
UnknownMessageEventFieldException
-
addField
-