Class BpmnRaisableData
java.lang.Object
de.xima.fc.common.workflow.bpmn.BpmnRaisableData
- All Implemented Interfaces:
Serializable
Additional data for a
BpmnRaisable in a structured BPMN model part, see also
raisableErrors,
raisableEscalations, and
raisableSignals. Each raisable is identifier by its identified
(error code, escalation code, or signal name), but may have additional data such as a display name or details. This
data can then be used e.g. by control flow elements that need to catch and rethrow events.- Since:
- 8.4.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBpmnRaisableData(String displayName, String eventDisplayName, String details) Creates a new instance ofBpmnRaisableDatawith the given display name, event display name, and details. -
Method Summary
Modifier and TypeMethodDescriptiondetails()Additional details about the raisable, such as a description of the error or escalation.The display name of the raisable, e.g.The display name when the event is raised via aThrowEvent, e.g.
-
Constructor Details
-
BpmnRaisableData
Creates a new instance ofBpmnRaisableDatawith the given display name, event display name, and details.- Parameters:
displayName- The display name of the raisable, e.g. "loop continuation".eventDisplayName- The display name when the event is raised via aThrowEvent, e.g. "Loop Continuation requested".details- Additional details about the raisable, such as a description of the error or escalation.
-
-
Method Details
-
details
Additional details about the raisable, such as a description of the error or escalation. For a "Loop continuation" escalation, this could be the target of the continue statement.null means details are desirable, but not available. An empty string means no details are needed.
- Returns:
- The details of the raisable.
-
displayName
The display name of the raisable, e.g. "loop continuation".- Returns:
- The display name of the raisable.
-
eventDisplayName
The display name when the event is raised via aThrowEvent, e.g. "Loop Continuation requested".- Returns:
- The display name for the event when raised.
-