Package com.aquima.interactions.process
Interface IProcessEventDefinition
- All Known Implementing Classes:
ProcessEventDefinition
public interface IProcessEventDefinition
This interface defines the methods of a process event definition. Process events are used to notify cases of
(external) events that are relevant for the process flow.
- Since:
- 7.1
- Author:
- O. Kerpershoek
-
Method Summary
-
Method Details
-
getId
GUID getId()This method returns the unique ID of the event. This ID is mainly used in database, as this ID will remain constant even if the name of the event changes.- Returns:
- The unique ID of the event.
-
getName
String getName()This method returns the (unique) name of the event. The name of the event is the primary means by which an external client will notify the process engine of an event.- Returns:
- The name of the event.
-
getDescription
String getDescription()This method returns a description of the event.- Returns:
- a description of the event.
-