Class BpmnProperties
- java.lang.Object
-
- org.camunda.bpm.engine.impl.bpmn.helper.BpmnProperties
-
public class BpmnProperties extends java.lang.Object
Properties of bpmn elements.- Author:
- Philipp Ossler
- See Also:
Properties
-
-
Field Summary
Fields Modifier and Type Field Description static PropertyListKey<CamundaErrorEventDefinition>
CAMUNDA_ERROR_EVENT_DEFINITION
static PropertyKey<ActivityImpl>
COMPENSATION_BOUNDARY_EVENT
static PropertyKey<ConditionalEventDefinition>
CONDITIONAL_EVENT_DEFINITION
static PropertyListKey<ErrorEventDefinition>
ERROR_EVENT_DEFINITIONS
static PropertyListKey<EscalationEventDefinition>
ESCALATION_EVENT_DEFINITIONS
static PropertyMapKey<java.lang.String,EventSubscriptionDeclaration>
EVENT_SUBSCRIPTION_DECLARATIONS
Declaration indexed by activity that is triggered by the event; assumes that there is at most one such declaration per activity.static PropertyKey<java.util.Map<java.lang.String,java.lang.String>>
EXTENSION_PROPERTIES
static PropertyKey<java.lang.Boolean>
HAS_CONDITIONAL_EVENTS
static PropertyKey<ActivityImpl>
INITIAL_ACTIVITY
static PropertyMapKey<java.lang.String,java.util.Map<java.lang.String,TimerDeclarationImpl>>
TIMEOUT_LISTENER_DECLARATIONS
Declaration indexed by activity and listener (id) that is triggered by the event; there can be multiple such declarations per activity but only one per listener.static PropertyMapKey<java.lang.String,TimerDeclarationImpl>
TIMER_DECLARATIONS
Declaration indexed by activity that is triggered by the event; assumes that there is at most one such declaration per activity.static PropertyKey<java.lang.Boolean>
TRIGGERED_BY_EVENT
static PropertyKey<java.lang.String>
TYPE
-
Constructor Summary
Constructors Constructor Description BpmnProperties()
-
-
-
Field Detail
-
TYPE
public static final PropertyKey<java.lang.String> TYPE
-
ESCALATION_EVENT_DEFINITIONS
public static final PropertyListKey<EscalationEventDefinition> ESCALATION_EVENT_DEFINITIONS
-
ERROR_EVENT_DEFINITIONS
public static final PropertyListKey<ErrorEventDefinition> ERROR_EVENT_DEFINITIONS
-
TIMER_DECLARATIONS
public static final PropertyMapKey<java.lang.String,TimerDeclarationImpl> TIMER_DECLARATIONS
Declaration indexed by activity that is triggered by the event; assumes that there is at most one such declaration per activity. There is code that relies on this assumption (e.g. when determining which declaration matches a job in the migration logic).
-
TIMEOUT_LISTENER_DECLARATIONS
public static final PropertyMapKey<java.lang.String,java.util.Map<java.lang.String,TimerDeclarationImpl>> TIMEOUT_LISTENER_DECLARATIONS
Declaration indexed by activity and listener (id) that is triggered by the event; there can be multiple such declarations per activity but only one per listener. There is code that relies on this assumption (e.g. when determining which declaration matches a job in the migration logic).
-
EVENT_SUBSCRIPTION_DECLARATIONS
public static final PropertyMapKey<java.lang.String,EventSubscriptionDeclaration> EVENT_SUBSCRIPTION_DECLARATIONS
Declaration indexed by activity that is triggered by the event; assumes that there is at most one such declaration per activity. There is code that relies on this assumption (e.g. when determining which declaration matches a job in the migration logic).
-
COMPENSATION_BOUNDARY_EVENT
public static final PropertyKey<ActivityImpl> COMPENSATION_BOUNDARY_EVENT
-
INITIAL_ACTIVITY
public static final PropertyKey<ActivityImpl> INITIAL_ACTIVITY
-
TRIGGERED_BY_EVENT
public static final PropertyKey<java.lang.Boolean> TRIGGERED_BY_EVENT
-
HAS_CONDITIONAL_EVENTS
public static final PropertyKey<java.lang.Boolean> HAS_CONDITIONAL_EVENTS
-
CONDITIONAL_EVENT_DEFINITION
public static final PropertyKey<ConditionalEventDefinition> CONDITIONAL_EVENT_DEFINITION
-
EXTENSION_PROPERTIES
public static final PropertyKey<java.util.Map<java.lang.String,java.lang.String>> EXTENSION_PROPERTIES
-
CAMUNDA_ERROR_EVENT_DEFINITION
public static final PropertyListKey<CamundaErrorEventDefinition> CAMUNDA_ERROR_EVENT_DEFINITION
-
-