bpmn-elements 8.2.4 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +1 -1
- package/dist/{src/Api.js → Api.js} +11 -12
- package/dist/{src/Context.js → Context.js} +26 -27
- package/dist/{src/Environment.js → Environment.js} +15 -16
- package/dist/{src/EventBroker.js → EventBroker.js} +5 -1
- package/dist/{src/Expressions.js → Expressions.js} +1 -1
- package/dist/{src/MessageFormatter.js → MessageFormatter.js} +3 -3
- package/dist/Tracker.js +89 -0
- package/dist/{src/activity → activity}/Activity.js +109 -120
- package/dist/{src/activity → activity}/ActivityExecution.js +28 -32
- package/dist/{src/activity → activity}/Dummy.js +1 -1
- package/dist/{src/activity → activity}/ExecutionScope.js +2 -2
- package/dist/{src/definition → definition}/Definition.js +64 -59
- package/dist/{src/definition → definition}/DefinitionExecution.js +68 -46
- package/dist/{src/error → error}/Errors.js +1 -1
- package/dist/eventDefinitions/CancelEventDefinition.js +127 -0
- package/dist/{src/eventDefinitions → eventDefinitions}/CompensateEventDefinition.js +64 -52
- package/dist/{src/eventDefinitions → eventDefinitions}/ConditionalEventDefinition.js +24 -16
- package/dist/{src/eventDefinitions → eventDefinitions}/ErrorEventDefinition.js +15 -14
- package/dist/{src/eventDefinitions → eventDefinitions}/EscalationEventDefinition.js +12 -13
- package/dist/{src/eventDefinitions → eventDefinitions}/EventDefinitionExecution.js +10 -11
- package/dist/{src/eventDefinitions → eventDefinitions}/LinkEventDefinition.js +14 -15
- package/dist/{src/eventDefinitions → eventDefinitions}/MessageEventDefinition.js +13 -14
- package/dist/{src/eventDefinitions → eventDefinitions}/SignalEventDefinition.js +13 -14
- package/dist/{src/eventDefinitions → eventDefinitions}/TerminateEventDefinition.js +1 -1
- package/dist/{src/eventDefinitions → eventDefinitions}/TimerEventDefinition.js +15 -16
- package/dist/{src/events → events}/BoundaryEvent.js +39 -25
- package/dist/{src/events → events}/EndEvent.js +3 -3
- package/dist/{src/events → events}/IntermediateCatchEvent.js +3 -3
- package/dist/{src/events → events}/IntermediateThrowEvent.js +3 -3
- package/dist/{src/events → events}/StartEvent.js +8 -9
- package/dist/{src/flows → flows}/Association.js +14 -22
- package/dist/{src/flows → flows}/MessageFlow.js +16 -14
- package/dist/{src/flows → flows}/SequenceFlow.js +16 -18
- package/dist/{src/gateways → gateways}/EventBasedGateway.js +3 -4
- package/dist/{src/gateways → gateways}/ExclusiveGateway.js +2 -2
- package/dist/{src/gateways → gateways}/InclusiveGateway.js +2 -2
- package/dist/{src/gateways → gateways}/ParallelGateway.js +2 -2
- package/dist/index.js +48 -48
- package/dist/{src/io → io}/InputOutputSpecification.js +8 -9
- package/dist/{src/io → io}/Properties.js +7 -8
- package/dist/package.json +3 -0
- package/dist/{src/process → process}/Process.js +44 -40
- package/dist/{src/process → process}/ProcessExecution.js +169 -78
- package/dist/{src/tasks → tasks}/CallActivity.js +7 -8
- package/dist/{src/tasks → tasks}/LoopCharacteristics.js +2 -2
- package/dist/{src/tasks → tasks}/ReceiveTask.js +14 -15
- package/dist/{src/tasks → tasks}/ScriptTask.js +4 -4
- package/dist/{src/tasks → tasks}/ServiceImplementation.js +1 -1
- package/dist/{src/tasks → tasks}/ServiceTask.js +6 -7
- package/dist/{src/tasks → tasks}/SignalTask.js +7 -8
- package/dist/{src/tasks → tasks}/StandardLoopCharacteristics.js +1 -1
- package/dist/{src/tasks → tasks}/SubProcess.js +19 -19
- package/dist/{src/tasks → tasks}/Task.js +2 -2
- package/dist/{src/tasks → tasks}/Transaction.js +1 -1
- package/package.json +31 -31
- package/src/Api.js +11 -13
- package/src/Context.js +26 -28
- package/src/Environment.js +15 -17
- package/src/EventBroker.js +2 -1
- package/src/Expressions.js +1 -1
- package/src/MessageFormatter.js +3 -3
- package/src/Tracker.js +73 -0
- package/src/activity/Activity.js +106 -114
- package/src/activity/ActivityExecution.js +28 -32
- package/src/activity/Dummy.js +1 -1
- package/src/activity/ExecutionScope.js +2 -2
- package/src/definition/Definition.js +65 -64
- package/src/definition/DefinitionExecution.js +71 -47
- package/src/error/Errors.js +1 -1
- package/src/eventDefinitions/CancelEventDefinition.js +32 -78
- package/src/eventDefinitions/CompensateEventDefinition.js +58 -52
- package/src/eventDefinitions/ConditionalEventDefinition.js +25 -17
- package/src/eventDefinitions/ErrorEventDefinition.js +15 -15
- package/src/eventDefinitions/EscalationEventDefinition.js +12 -14
- package/src/eventDefinitions/EventDefinitionExecution.js +10 -12
- package/src/eventDefinitions/LinkEventDefinition.js +14 -16
- package/src/eventDefinitions/MessageEventDefinition.js +13 -15
- package/src/eventDefinitions/SignalEventDefinition.js +13 -15
- package/src/eventDefinitions/TerminateEventDefinition.js +1 -1
- package/src/eventDefinitions/TimerEventDefinition.js +15 -17
- package/src/events/BoundaryEvent.js +34 -24
- package/src/events/EndEvent.js +3 -3
- package/src/events/IntermediateCatchEvent.js +3 -3
- package/src/events/IntermediateThrowEvent.js +3 -3
- package/src/events/StartEvent.js +8 -10
- package/src/flows/Association.js +14 -26
- package/src/flows/MessageFlow.js +14 -15
- package/src/flows/SequenceFlow.js +16 -20
- package/src/gateways/EventBasedGateway.js +3 -4
- package/src/gateways/ExclusiveGateway.js +2 -2
- package/src/gateways/InclusiveGateway.js +2 -2
- package/src/gateways/ParallelGateway.js +2 -2
- package/src/index.js +106 -0
- package/src/io/InputOutputSpecification.js +8 -10
- package/src/io/Properties.js +7 -9
- package/src/process/Process.js +45 -41
- package/src/process/ProcessExecution.js +167 -79
- package/src/tasks/CallActivity.js +7 -9
- package/src/tasks/LoopCharacteristics.js +2 -2
- package/src/tasks/ReceiveTask.js +215 -217
- package/src/tasks/ScriptTask.js +4 -4
- package/src/tasks/ServiceImplementation.js +1 -1
- package/src/tasks/ServiceTask.js +6 -8
- package/src/tasks/SignalTask.js +7 -9
- package/src/tasks/StandardLoopCharacteristics.js +1 -1
- package/src/tasks/SubProcess.js +19 -20
- package/src/tasks/Task.js +2 -2
- package/src/tasks/Transaction.js +1 -1
- package/types/index.d.ts +520 -0
- package/dist/src/eventDefinitions/CancelEventDefinition.js +0 -184
- package/index.js +0 -106
- /package/dist/{src/ExtensionsMapper.js → ExtensionsMapper.js} +0 -0
- /package/dist/{src/Scripts.js → Scripts.js} +0 -0
- /package/dist/{src/Timers.js → Timers.js} +0 -0
- /package/dist/{src/activity → activity}/Escalation.js +0 -0
- /package/dist/{src/activity → activity}/Message.js +0 -0
- /package/dist/{src/activity → activity}/Signal.js +0 -0
- /package/dist/{src/error → error}/BpmnError.js +0 -0
- /package/dist/{src/getPropertyValue.js → getPropertyValue.js} +0 -0
- /package/dist/{src/io → io}/BpmnIO.js +0 -0
- /package/dist/{src/io → io}/EnvironmentDataObject.js +0 -0
- /package/dist/{src/io → io}/EnvironmentDataStore.js +0 -0
- /package/dist/{src/io → io}/EnvironmentDataStoreReference.js +0 -0
- /package/dist/{src/messageHelper.js → messageHelper.js} +0 -0
- /package/dist/{src/shared.js → shared.js} +0 -0
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = CancelEventDefinition;
|
|
7
|
-
var _shared = require("../shared");
|
|
8
|
-
var _messageHelper = require("../messageHelper");
|
|
9
|
-
const kMessageQ = Symbol.for('cancelQ');
|
|
10
|
-
const kCompleted = Symbol.for('completed');
|
|
11
|
-
const kExecuteMessage = Symbol.for('executeMessage');
|
|
12
|
-
function CancelEventDefinition(activity, eventDefinition) {
|
|
13
|
-
const {
|
|
14
|
-
id,
|
|
15
|
-
broker,
|
|
16
|
-
environment,
|
|
17
|
-
isThrowing
|
|
18
|
-
} = activity;
|
|
19
|
-
const type = eventDefinition.type;
|
|
20
|
-
this.id = id;
|
|
21
|
-
this.type = type;
|
|
22
|
-
const reference = this.reference = {
|
|
23
|
-
referenceType: 'cancel'
|
|
24
|
-
};
|
|
25
|
-
this.isThrowing = isThrowing;
|
|
26
|
-
this.activity = activity;
|
|
27
|
-
this.environment = environment;
|
|
28
|
-
this.broker = broker;
|
|
29
|
-
this.logger = environment.Logger(type.toLowerCase());
|
|
30
|
-
if (!isThrowing) {
|
|
31
|
-
this[kCompleted] = false;
|
|
32
|
-
const messageQueueName = `${reference.referenceType}-${(0, _shared.brokerSafeId)(id)}-q`;
|
|
33
|
-
this[kMessageQ] = broker.assertQueue(messageQueueName, {
|
|
34
|
-
autoDelete: false,
|
|
35
|
-
durable: true
|
|
36
|
-
});
|
|
37
|
-
broker.bindQueue(messageQueueName, 'api', `*.${reference.referenceType}.#`, {
|
|
38
|
-
durable: true,
|
|
39
|
-
priority: 400
|
|
40
|
-
});
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
const proto = CancelEventDefinition.prototype;
|
|
44
|
-
Object.defineProperty(proto, 'executionId', {
|
|
45
|
-
get() {
|
|
46
|
-
const message = this[kExecuteMessage];
|
|
47
|
-
return message && message.content.executionId;
|
|
48
|
-
}
|
|
49
|
-
});
|
|
50
|
-
proto.execute = function execute(executeMessage) {
|
|
51
|
-
return this.isThrowing ? this.executeThrow(executeMessage) : this.executeCatch(executeMessage);
|
|
52
|
-
};
|
|
53
|
-
proto.executeCatch = function executeCatch(executeMessage) {
|
|
54
|
-
this[kExecuteMessage] = executeMessage;
|
|
55
|
-
this[kCompleted] = false;
|
|
56
|
-
const executeContent = executeMessage.content;
|
|
57
|
-
const {
|
|
58
|
-
executionId,
|
|
59
|
-
parent
|
|
60
|
-
} = executeContent;
|
|
61
|
-
const parentExecutionId = parent.executionId;
|
|
62
|
-
const broker = this.broker;
|
|
63
|
-
const onCatchMessage = this._onCatchMessage.bind(this);
|
|
64
|
-
this[kMessageQ].consume(onCatchMessage, {
|
|
65
|
-
noAck: true,
|
|
66
|
-
consumerTag: `_oncancel-${executionId}`
|
|
67
|
-
});
|
|
68
|
-
if (this[kCompleted]) return;
|
|
69
|
-
const onApiMessage = this._onApiMessage.bind(this);
|
|
70
|
-
broker.subscribeTmp('api', `activity.#.${parentExecutionId}`, onApiMessage, {
|
|
71
|
-
noAck: true,
|
|
72
|
-
consumerTag: `_api-parent-${executionId}`
|
|
73
|
-
});
|
|
74
|
-
broker.subscribeTmp('api', `activity.#.${executionId}`, onApiMessage, {
|
|
75
|
-
noAck: true,
|
|
76
|
-
consumerTag: `_api-${executionId}`
|
|
77
|
-
});
|
|
78
|
-
this._debug('expect cancel');
|
|
79
|
-
const exchangeKey = `execute.canceled.${executionId}`;
|
|
80
|
-
broker.subscribeOnce('execution', exchangeKey, onCatchMessage, {
|
|
81
|
-
consumerTag: `_onattached-cancel-${executionId}`
|
|
82
|
-
});
|
|
83
|
-
broker.publish('execution', 'execute.expect', (0, _messageHelper.cloneContent)(executeContent, {
|
|
84
|
-
pattern: '#.cancel',
|
|
85
|
-
exchange: 'execution',
|
|
86
|
-
exchangeKey
|
|
87
|
-
}));
|
|
88
|
-
};
|
|
89
|
-
proto.executeThrow = function executeThrow(executeMessage) {
|
|
90
|
-
const {
|
|
91
|
-
isTransaction
|
|
92
|
-
} = this.environment.variables.content || {};
|
|
93
|
-
const executeContent = executeMessage.content;
|
|
94
|
-
const {
|
|
95
|
-
executionId,
|
|
96
|
-
parent
|
|
97
|
-
} = executeContent;
|
|
98
|
-
this.logger.debug(`<${executionId} (${this.activity.id})> throw cancel${isTransaction ? ' transaction' : ''}`);
|
|
99
|
-
const broker = this.broker;
|
|
100
|
-
const cancelContent = (0, _messageHelper.cloneContent)(executeContent, {
|
|
101
|
-
isTransaction,
|
|
102
|
-
executionId: parent.executionId,
|
|
103
|
-
state: 'throw'
|
|
104
|
-
});
|
|
105
|
-
cancelContent.parent = (0, _messageHelper.shiftParent)(parent);
|
|
106
|
-
broker.publish('event', 'activity.cancel', cancelContent, {
|
|
107
|
-
type: 'cancel',
|
|
108
|
-
delegate: isTransaction
|
|
109
|
-
});
|
|
110
|
-
return broker.publish('execution', 'execute.completed', (0, _messageHelper.cloneContent)(executeContent));
|
|
111
|
-
};
|
|
112
|
-
proto._onCatchMessage = function onCatchMessage(_, message) {
|
|
113
|
-
if (message.content && message.content.isTransaction) return this._onCancelTransaction(_, message);
|
|
114
|
-
this._debug(`cancel caught from <${message.content.id}>`);
|
|
115
|
-
return this._complete(message.content.message);
|
|
116
|
-
};
|
|
117
|
-
proto._onCancelTransaction = function onCancelTransaction(_, message) {
|
|
118
|
-
const broker = this.broker,
|
|
119
|
-
executionId = this.executionId;
|
|
120
|
-
const executeContent = this[kExecuteMessage].content;
|
|
121
|
-
broker.cancel(`_oncancel-${executionId}`);
|
|
122
|
-
this._debug(`cancel transaction thrown by <${message.content.id}>`);
|
|
123
|
-
broker.assertExchange('cancel', 'topic');
|
|
124
|
-
broker.publish('execution', 'execute.detach', (0, _messageHelper.cloneContent)(executeContent, {
|
|
125
|
-
pattern: '#',
|
|
126
|
-
bindExchange: 'cancel',
|
|
127
|
-
sourceExchange: 'event',
|
|
128
|
-
sourcePattern: '#'
|
|
129
|
-
}));
|
|
130
|
-
broker.publish('event', 'activity.compensate', (0, _messageHelper.cloneContent)(message.content, {
|
|
131
|
-
state: 'throw'
|
|
132
|
-
}), {
|
|
133
|
-
type: 'compensate',
|
|
134
|
-
delegate: true
|
|
135
|
-
});
|
|
136
|
-
broker.subscribeTmp('cancel', 'activity.leave', (__, {
|
|
137
|
-
content: msg
|
|
138
|
-
}) => {
|
|
139
|
-
if (msg.id !== executeContent.attachedTo) return;
|
|
140
|
-
return this._complete(message.content.message);
|
|
141
|
-
}, {
|
|
142
|
-
noAck: true,
|
|
143
|
-
consumerTag: `_oncancelend-${executionId}`
|
|
144
|
-
});
|
|
145
|
-
};
|
|
146
|
-
proto._complete = function complete(output) {
|
|
147
|
-
this[kCompleted] = true;
|
|
148
|
-
this._stop();
|
|
149
|
-
this._debug('completed');
|
|
150
|
-
const content = (0, _messageHelper.cloneContent)(this[kExecuteMessage].content, {
|
|
151
|
-
output,
|
|
152
|
-
state: 'cancel'
|
|
153
|
-
});
|
|
154
|
-
return this.broker.publish('execution', 'execute.completed', content);
|
|
155
|
-
};
|
|
156
|
-
proto._onApiMessage = function onApiMessage(routingKey, message) {
|
|
157
|
-
switch (message.properties.type) {
|
|
158
|
-
case 'discard':
|
|
159
|
-
{
|
|
160
|
-
this[kCompleted] = true;
|
|
161
|
-
this._stop();
|
|
162
|
-
const content = (0, _messageHelper.cloneContent)(this[kExecuteMessage].content);
|
|
163
|
-
return this.broker.publish('execution', 'execute.discard', content);
|
|
164
|
-
}
|
|
165
|
-
case 'stop':
|
|
166
|
-
{
|
|
167
|
-
this._stop();
|
|
168
|
-
break;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
};
|
|
172
|
-
proto._stop = function stop() {
|
|
173
|
-
const broker = this.broker,
|
|
174
|
-
executionId = this.executionId;
|
|
175
|
-
broker.cancel(`_api-parent-${executionId}`);
|
|
176
|
-
broker.cancel(`_api-${executionId}`);
|
|
177
|
-
broker.cancel(`_oncancel-${executionId}`);
|
|
178
|
-
broker.cancel(`_oncancelend-${executionId}`);
|
|
179
|
-
broker.cancel(`_onattached-cancel-${executionId}`);
|
|
180
|
-
this[kMessageQ].purge();
|
|
181
|
-
};
|
|
182
|
-
proto._debug = function debug(msg) {
|
|
183
|
-
this.logger.debug(`<${this.executionId} (${this.activity.id})> ${msg}`);
|
|
184
|
-
};
|
package/index.js
DELETED
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
import Activity from './src/activity/Activity';
|
|
2
|
-
import Association from './src/flows/Association';
|
|
3
|
-
import BoundaryEvent from './src/events/BoundaryEvent';
|
|
4
|
-
import BpmnError from './src/error/BpmnError';
|
|
5
|
-
import CallActivity from './src/tasks/CallActivity';
|
|
6
|
-
import CancelEventDefinition from './src/eventDefinitions/CancelEventDefinition';
|
|
7
|
-
import CompensateEventDefinition from './src/eventDefinitions/CompensateEventDefinition';
|
|
8
|
-
import ConditionalEventDefinition from './src/eventDefinitions/ConditionalEventDefinition';
|
|
9
|
-
import Context from './src/Context';
|
|
10
|
-
import DataObject from './src/io/EnvironmentDataObject';
|
|
11
|
-
import DataStore from './src/io/EnvironmentDataStore';
|
|
12
|
-
import DataStoreReference from './src/io/EnvironmentDataStoreReference';
|
|
13
|
-
import Definition from './src/definition/Definition';
|
|
14
|
-
import Dummy from './src/activity/Dummy';
|
|
15
|
-
import EndEvent from './src/events/EndEvent';
|
|
16
|
-
import Environment from './src/Environment';
|
|
17
|
-
import ErrorEventDefinition from './src/eventDefinitions/ErrorEventDefinition';
|
|
18
|
-
import Escalation from './src/activity/Escalation';
|
|
19
|
-
import EscalationEventDefinition from './src/eventDefinitions/EscalationEventDefinition';
|
|
20
|
-
import EventBasedGateway from './src/gateways/EventBasedGateway';
|
|
21
|
-
import ExclusiveGateway from './src/gateways/ExclusiveGateway';
|
|
22
|
-
import InclusiveGateway from './src/gateways/InclusiveGateway';
|
|
23
|
-
import InputOutputSpecification from './src/io/InputOutputSpecification';
|
|
24
|
-
import IntermediateCatchEvent from './src/events/IntermediateCatchEvent';
|
|
25
|
-
import IntermediateThrowEvent from './src/events/IntermediateThrowEvent';
|
|
26
|
-
import LinkEventDefinition from './src/eventDefinitions/LinkEventDefinition';
|
|
27
|
-
import LoopCharacteristics from './src/tasks/LoopCharacteristics';
|
|
28
|
-
import Message from './src/activity/Message';
|
|
29
|
-
import MessageEventDefinition from './src/eventDefinitions/MessageEventDefinition';
|
|
30
|
-
import MessageFlow from './src/flows/MessageFlow';
|
|
31
|
-
import ParallelGateway from './src/gateways/ParallelGateway';
|
|
32
|
-
import Process from './src/process/Process';
|
|
33
|
-
import Properties from './src/io/Properties';
|
|
34
|
-
import ReceiveTask from './src/tasks/ReceiveTask';
|
|
35
|
-
import ScriptTask from './src/tasks/ScriptTask';
|
|
36
|
-
import SequenceFlow from './src/flows/SequenceFlow';
|
|
37
|
-
import ServiceImplementation from './src/tasks/ServiceImplementation';
|
|
38
|
-
import ServiceTask from './src/tasks/ServiceTask';
|
|
39
|
-
import Signal from './src/activity/Signal';
|
|
40
|
-
import SignalEventDefinition from './src/eventDefinitions/SignalEventDefinition';
|
|
41
|
-
import SignalTask from './src/tasks/SignalTask';
|
|
42
|
-
import StandardLoopCharacteristics from './src/tasks/StandardLoopCharacteristics';
|
|
43
|
-
import StartEvent from './src/events/StartEvent';
|
|
44
|
-
import SubProcess from './src/tasks/SubProcess';
|
|
45
|
-
import Task from './src/tasks/Task';
|
|
46
|
-
import TerminateEventDefinition from './src/eventDefinitions/TerminateEventDefinition';
|
|
47
|
-
import TimerEventDefinition from './src/eventDefinitions/TimerEventDefinition';
|
|
48
|
-
import Transaction from './src/tasks/Transaction';
|
|
49
|
-
|
|
50
|
-
export {
|
|
51
|
-
Association,
|
|
52
|
-
Activity,
|
|
53
|
-
BoundaryEvent,
|
|
54
|
-
BpmnError,
|
|
55
|
-
CallActivity,
|
|
56
|
-
CancelEventDefinition,
|
|
57
|
-
CompensateEventDefinition,
|
|
58
|
-
ConditionalEventDefinition,
|
|
59
|
-
Context,
|
|
60
|
-
DataObject,
|
|
61
|
-
DataStore,
|
|
62
|
-
DataStoreReference,
|
|
63
|
-
Definition,
|
|
64
|
-
Dummy,
|
|
65
|
-
Dummy as TextAnnotation,
|
|
66
|
-
Dummy as Group,
|
|
67
|
-
Dummy as Category,
|
|
68
|
-
EndEvent,
|
|
69
|
-
Environment,
|
|
70
|
-
ErrorEventDefinition,
|
|
71
|
-
Escalation,
|
|
72
|
-
EscalationEventDefinition,
|
|
73
|
-
EventBasedGateway,
|
|
74
|
-
ExclusiveGateway,
|
|
75
|
-
InclusiveGateway,
|
|
76
|
-
InputOutputSpecification,
|
|
77
|
-
IntermediateCatchEvent,
|
|
78
|
-
IntermediateThrowEvent,
|
|
79
|
-
LinkEventDefinition,
|
|
80
|
-
Message,
|
|
81
|
-
MessageEventDefinition,
|
|
82
|
-
MessageFlow,
|
|
83
|
-
LoopCharacteristics as MultiInstanceLoopCharacteristics,
|
|
84
|
-
ParallelGateway,
|
|
85
|
-
Process,
|
|
86
|
-
Properties,
|
|
87
|
-
ReceiveTask,
|
|
88
|
-
ScriptTask,
|
|
89
|
-
SequenceFlow,
|
|
90
|
-
ServiceImplementation,
|
|
91
|
-
ServiceTask as SendTask,
|
|
92
|
-
ServiceTask as BusinessRuleTask,
|
|
93
|
-
ServiceTask,
|
|
94
|
-
Signal,
|
|
95
|
-
SignalEventDefinition,
|
|
96
|
-
SignalTask as ManualTask,
|
|
97
|
-
SignalTask as UserTask,
|
|
98
|
-
SignalTask,
|
|
99
|
-
StandardLoopCharacteristics,
|
|
100
|
-
StartEvent,
|
|
101
|
-
SubProcess,
|
|
102
|
-
Task,
|
|
103
|
-
TerminateEventDefinition,
|
|
104
|
-
TimerEventDefinition,
|
|
105
|
-
Transaction,
|
|
106
|
-
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|