Package org.activiti.cloud.api.events
Enum Class CloudRuntimeEventType
- All Implemented Interfaces:
Serializable,Comparable<CloudRuntimeEventType>,Constable
Enumeration for all the Activiti Cloud event types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe runtime bundle has deployed an applicationThe runtime bundle has received a error from a cloud connector.The runtime bundle has sent a request to a cloud connector.The runtime bundle has received a result from a cloud connector.The process reached a message catch event and is listening for a BPMN message.Similar to MESSAGE_WAITING, but for start message events. -
Method Summary
Modifier and TypeMethodDescriptionstatic CloudRuntimeEventTypeReturns the enum constant of this class with the specified name.static CloudRuntimeEventType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACTIVITY_CANCELLED
-
ACTIVITY_COMPLETED
-
ACTIVITY_STARTED
-
ERROR_RECEIVED
-
INTEGRATION_REQUESTED
The runtime bundle has sent a request to a cloud connector. -
INTEGRATION_RESULT_RECEIVED
The runtime bundle has received a result from a cloud connector. -
INTEGRATION_ERROR_RECEIVED
The runtime bundle has received a error from a cloud connector. -
MESSAGE_RECEIVED
-
MESSAGE_SENT
-
MESSAGE_SUBSCRIPTION_CANCELLED
-
MESSAGE_WAITING
The process reached a message catch event and is listening for a BPMN message. -
PROCESS_CANCELLED
-
PROCESS_COMPLETED
-
PROCESS_CREATED
-
PROCESS_DEPLOYED
-
PROCESS_RESUMED
-
PROCESS_STARTED
-
PROCESS_SUSPENDED
-
PROCESS_UPDATED
-
PROCESS_DELETED
-
SEQUENCE_FLOW_TAKEN
-
SIGNAL_RECEIVED
-
START_MESSAGE_DEPLOYED
Similar to MESSAGE_WAITING, but for start message events. -
TASK_ACTIVATED
-
TASK_ASSIGNED
-
TASK_CANCELLED
-
TASK_CANDIDATE_GROUP_ADDED
-
TASK_CANDIDATE_GROUP_REMOVED
-
TASK_CANDIDATE_USER_ADDED
-
TASK_CANDIDATE_USER_REMOVED
-
TASK_COMPLETED
-
TASK_CREATED
-
TASK_SUSPENDED
-
TASK_UPDATED
-
TIMER_CANCELLED
-
TIMER_EXECUTED
-
TIMER_FAILED
-
TIMER_FIRED
-
TIMER_RETRIES_DECREMENTED
-
TIMER_SCHEDULED
-
VARIABLE_CREATED
-
VARIABLE_DELETED
-
VARIABLE_UPDATED
-
APPLICATION_DEPLOYED
The runtime bundle has deployed an application -
APPLICATION_ROLLBACK
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-