刘光辉
9 小时以前 0dfe84494048ce27ba8449831782128412d3eb13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
const bpmnTask = 'bpmn:UserTask';
const bpmnStart = 'bpmn:StartEvent';
const bpmnEnd = 'bpmn:EndEvent';
const bpmnGateway = 'bpmn:InclusiveGateway';
const bpmnSequenceFlow = 'bpmn:SequenceFlow';
const bpmnTimer = 'bpmn:IntermediateCatchEvent';
const bpmnSubFlow = 'subFlow';
const bpmnInclusive = 'bpmn:InclusiveGateway';
const bpmnParallel = 'bpmn:ParallelGateway';
const bpmnExclusive = 'bpmn:ExclusiveGateway';
const bpmnChoose = 'choose';
const bpmnGroup = 'bpmn:Group';
const bpmnLabel = 'label';
const bpmnIncoming = 'bpmn2:incoming';
const bpmnTrigger = 'trigger';
const bpmnExecute = 'execute';
const bpmnOutgoing = 'bpmn2:outgoing';
const bpmnAddData = 'addData';
const bpmnGetData = 'getData';
const bpmnUpdateData = 'updateData';
const bpmnDelData = 'deleteData';
const bpmnInterface = 'dataInterface';
const bpmnLaunchFlow = 'launchFlow';
const bpmnMessage = 'message';
const bpmnSchedule = 'schedule';
const bpmnEvent = 'event';
const bpmnTime = 'timeout';
const bpmnNotice = 'notice';
const bpmnWebhook = 'webhook';
const bpmnCopy = 'copy';
const bpmnPaste = 'paste';
const bpmnProcessing = 'processing';
const bpmnOutside = 'outside';
const bpmnFree = 'free';
 
const typeStart = 'start';
const typeGateway = 'gateway';
const typeEnd = 'end';
const typeTask = 'approver';
const typeLabel = 'label';
const typeTimer = 'timer';
const typeSubFlow = 'subFlow';
const typeConfluence = 'confluence';
const typeGroup = 'group';
const typeTrigger = 'trigger';
const typeExecute = 'execute';
const typeAddData = 'addData';
const typeGetData = 'getData';
const typeUpdateData = 'updateData';
const typeDelData = 'deleteData';
const typeInterface = 'dataInterface';
const typeLaunchFlow = 'launchFlow';
const typeMessage = 'message';
const typeSchedule = 'schedule';
const typeEventTrigger = 'eventTrigger';
const typeTimeTrigger = 'timeTrigger';
const typeNoticeTrigger = 'noticeTrigger';
const typeWebhookTrigger = 'webhookTrigger';
const typeConnect = 'connect';
const typeCondition = 'condition';
const typeCopy = 'copy';
const typePaste = 'paste';
const typeProcessing = 'processing';
const typeInclusion = 'inclusion';
const typeParallel = 'parallel';
const typeExclusive = 'exclusive';
const typeChoose = 'choose';
const typeOutside = 'outside';
const typeFree = 'free';
 
export {
  bpmnTask,
  bpmnStart,
  bpmnEnd,
  bpmnGateway,
  bpmnSequenceFlow,
  bpmnLabel,
  bpmnTimer,
  bpmnSubFlow,
  bpmnInclusive,
  bpmnParallel,
  bpmnExclusive,
  bpmnGroup,
  bpmnTrigger,
  bpmnExecute,
  bpmnIncoming,
  bpmnOutgoing,
  bpmnAddData,
  bpmnGetData,
  bpmnUpdateData,
  bpmnDelData,
  bpmnInterface,
  bpmnLaunchFlow,
  bpmnMessage,
  bpmnSchedule,
  bpmnEvent,
  bpmnTime,
  bpmnNotice,
  bpmnWebhook,
  bpmnCopy,
  bpmnPaste,
  bpmnProcessing,
  bpmnChoose,
  bpmnOutside,
  bpmnFree,
  typeAddData,
  typeGetData,
  typeUpdateData,
  typeDelData,
  typeInterface,
  typeLaunchFlow,
  typeMessage,
  typeSchedule,
  typeEventTrigger,
  typeTimeTrigger,
  typeNoticeTrigger,
  typeWebhookTrigger,
  typeConnect,
  typeCondition,
  typeStart,
  typeGateway,
  typeEnd,
  typeTask,
  typeLabel,
  typeTimer,
  typeSubFlow,
  typeConfluence,
  typeGroup,
  typeTrigger,
  typeExecute,
  typeCopy,
  typePaste,
  typeProcessing,
  typeInclusion,
  typeParallel,
  typeExclusive,
  typeChoose,
  typeOutside,
  typeFree
};