...
Event | BPMN Symbol | Description |
---|---|---|
Create StartEvent | Start event of a Workflow. This represents the Start of the Workflow execution. Service Tasks and Decision gateways can be added after the start event in sequence to create the workflow. | |
Create EndEvent | End event of a Workflow. This is the represent represents the End of the Workflow path. When the process has reached an end event, it is completecompleted. When a sub process reaches an end event, the process flow returns to the parent level process. | |
Create ServiceTask | Creates a Service Task in a Workflow. It is used to create or add Operations in a workflow. To create a process workflow, service tasks are add added in sequence with the operations to be executed at each step. | |
Create ScriptTask | Creates a Script Task in the workflow. It is used to execute a script as part of the workflow. The script tasks are added in sequence with the other Service Tasks to create a workflow. When the workflow process arrives at the Script Task, the configured script is executed. | |
XOR Gateway | A diverging Exclusive Gateway. It is used to create alternative paths within a Process flow. When the execution of a workflow arrives at the gateway, all outgoing sequence flows are evaluated in the order in which they are defined. The workflow path whose condition evaluates to true is executed. |
...