Class ProcessEventDefinition
- java.lang.Object
-
- com.aquima.interactions.process.impl.ProcessEventDefinition
-
- All Implemented Interfaces:
IProcessEventDefinition
public class ProcessEventDefinition extends Object implements IProcessEventDefinition
This class contains a single process event definition.- Since:
- 7.1
- Author:
- O. Kerpershoek
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ProcessEventDefinition(IProcessEventDS datasource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
This method returns a description of the event.GUID
getId()
This method returns the unique ID of the event.String
getName()
This method returns the (unique) name of the event.
-
-
-
Constructor Detail
-
ProcessEventDefinition
protected ProcessEventDefinition(IProcessEventDS datasource)
-
-
Method Detail
-
getId
public GUID getId()
Description copied from interface:IProcessEventDefinition
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.- Specified by:
getId
in interfaceIProcessEventDefinition
- Returns:
- The unique ID of the event.
-
getName
public String getName()
Description copied from interface:IProcessEventDefinition
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.- Specified by:
getName
in interfaceIProcessEventDefinition
- Returns:
- The name of the event.
-
getDescription
public String getDescription()
Description copied from interface:IProcessEventDefinition
This method returns a description of the event.- Specified by:
getDescription
in interfaceIProcessEventDefinition
- Returns:
- a description of the event.
-
-