public enum BusinessProcessEventPropertiesFiller extends Enum<BusinessProcessEventPropertiesFiller>
| Enum Constant and Description |
|---|
ACTIVITY_ID
the id of the activity the process is currently in / was in at the moment
the event was fired.
|
EXECUTION_ID
the id of the
org.camunda.bpm.engine.runtime.Execution this event
corresponds to |
PROCESS_DEFINITION
the id of the process definition in which the event is happening / has
happened or null the event was not related to a process definition
|
PROCESS_INSTANCE_ID
the id of the
org.camunda.bpm.engine.runtime.ProcessInstance this
event corresponds to |
TASK_DEFINITION_KEY
the id of the task in the process definition (BPMN XML) or null if this is
not a task event.
|
TASK_ID
the task id of the current task or null if this is not a task event.
|
TIMESTAMP
the timestamp indicating the local time at which the event was fired.
|
TRANSITION_ID
the id of the transition being taken / that was taken
|
TYPE
the type of the event, one of the constants in
TaskListener or
ExecutionListener |
| Modifier and Type | Method and Description |
|---|---|
static void |
fillDictionary(Dictionary<String,String> dictionary,
org.camunda.bpm.engine.delegate.DelegateExecution execution) |
static void |
fillDictionary(Dictionary<String,String> dictionary,
org.camunda.bpm.engine.delegate.DelegateTask task) |
String |
getPropertyKey() |
static BusinessProcessEventPropertiesFiller |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusinessProcessEventPropertiesFiller[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusinessProcessEventPropertiesFiller PROCESS_DEFINITION
public static final BusinessProcessEventPropertiesFiller ACTIVITY_ID
public static final BusinessProcessEventPropertiesFiller TRANSITION_ID
public static final BusinessProcessEventPropertiesFiller PROCESS_INSTANCE_ID
org.camunda.bpm.engine.runtime.ProcessInstance this
event corresponds topublic static final BusinessProcessEventPropertiesFiller EXECUTION_ID
org.camunda.bpm.engine.runtime.Execution this event
corresponds topublic static final BusinessProcessEventPropertiesFiller TYPE
TaskListener or
ExecutionListenerpublic static final BusinessProcessEventPropertiesFiller TIMESTAMP
public static final BusinessProcessEventPropertiesFiller TASK_ID
public static final BusinessProcessEventPropertiesFiller TASK_DEFINITION_KEY
public static BusinessProcessEventPropertiesFiller[] values()
for (BusinessProcessEventPropertiesFiller c : BusinessProcessEventPropertiesFiller.values()) System.out.println(c);
public static BusinessProcessEventPropertiesFiller valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getPropertyKey()
public static void fillDictionary(Dictionary<String,String> dictionary, org.camunda.bpm.engine.delegate.DelegateExecution execution)
public static void fillDictionary(Dictionary<String,String> dictionary, org.camunda.bpm.engine.delegate.DelegateTask task)
Copyright © 2017 camunda services GmbH. All rights reserved.