Package org.camunda.bpm.engine.cdi
Interface BusinessProcessEventType
-
- All Known Implementing Classes:
BusinessProcessEventType.DefaultBusinessProcessEventType
public interface BusinessProcessEventType
The type of a business process event. Indicates what is happening/has happened, i.e. whether a transition is taken, an activity is entered or left, a task is created, assigned, completed or deleted.- Author:
- Daniel Meyer
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
BusinessProcessEventType.DefaultBusinessProcessEventType
-
Field Summary
Fields Modifier and Type Field Description static BusinessProcessEventType
ASSIGN_TASK
Signifies that a task is assignedstatic BusinessProcessEventType
COMPLETE_TASK
Signifies that a task is completedstatic BusinessProcessEventType
CREATE_TASK
Signifies that a task is createdstatic BusinessProcessEventType
DELETE_TASK
Signifies that a task is deletedstatic BusinessProcessEventType
END_ACTIVITY
Signifies that an activity is being left / was leftstatic BusinessProcessEventType
START_ACTIVITY
Signifies that an activity is being entered / war enteredstatic BusinessProcessEventType
TAKE
Signifies that a transition is being taken / was takenstatic BusinessProcessEventType
UPDATE_TASK
Signifies that a task is updated
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getTypeName()
-
-
-
Field Detail
-
TAKE
static final BusinessProcessEventType TAKE
Signifies that a transition is being taken / was taken
-
START_ACTIVITY
static final BusinessProcessEventType START_ACTIVITY
Signifies that an activity is being entered / war entered
-
END_ACTIVITY
static final BusinessProcessEventType END_ACTIVITY
Signifies that an activity is being left / was left
-
CREATE_TASK
static final BusinessProcessEventType CREATE_TASK
Signifies that a task is created
-
ASSIGN_TASK
static final BusinessProcessEventType ASSIGN_TASK
Signifies that a task is assigned
-
COMPLETE_TASK
static final BusinessProcessEventType COMPLETE_TASK
Signifies that a task is completed
-
UPDATE_TASK
static final BusinessProcessEventType UPDATE_TASK
Signifies that a task is updated
-
DELETE_TASK
static final BusinessProcessEventType DELETE_TASK
Signifies that a task is deleted
-
-