@jiangood/springboot-admin-starter 0.0.2 → 0.0.4
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/config/dist/config.js +32 -0
- package/config/dist/index.js +0 -1
- package/config/dist/plugins/form-plugin.js +2 -2
- package/package.json +12 -10
- package/src/forms/demoForm.jsx +5 -5
- package/src/framework/components/DownloadFileButton.jsx +2 -2
- package/src/framework/components/Ellipsis.jsx +2 -2
- package/src/framework/components/LinkButton.d.ts +4 -4
- package/src/framework/components/LinkButton.jsx +6 -9
- package/src/framework/components/Page/index.jsx +2 -2
- package/src/framework/components/PageLoading.tsx +27 -0
- package/src/framework/components/ProTable/components/ToolBar/index.jsx +6 -7
- package/src/framework/components/ProTable/index.d.ts +5 -1
- package/src/framework/components/ProTable/index.jsx +4 -6
- package/src/framework/components/ProTable/index.less +0 -1
- package/src/framework/components/ValueType/registry.jsx +9 -20
- package/src/framework/components/{index.js → index.ts} +2 -10
- package/src/framework/components/system/ButtonList.jsx +35 -0
- package/src/framework/components/system/HasPerm.tsx +14 -0
- package/src/framework/components/system/index.tsx +29 -0
- package/src/framework/components/view/ViewBooleanEnableDisable.tsx +20 -0
- package/src/framework/components/view/ViewEllipsis.jsx +2 -2
- package/src/framework/components/view/ViewFile.jsx +1 -2
- package/src/framework/components/view/ViewImage.jsx +2 -3
- package/src/framework/components/view/ViewText.tsx +16 -0
- package/src/framework/components/view/{index.js → index.ts} +0 -2
- package/src/framework/field-components/FieldBoolean.d.ts +13 -0
- package/src/framework/field-components/FieldBoolean.jsx +76 -0
- package/src/framework/field-components/FieldDate.d.ts +25 -0
- package/src/framework/field-components/FieldDate.jsx +109 -0
- package/src/framework/field-components/FieldDateRange.d.ts +6 -0
- package/src/framework/field-components/FieldDateRange.jsx +101 -0
- package/src/framework/field-components/FieldDictSelect.d.ts +13 -0
- package/src/framework/field-components/FieldDictSelect.jsx +16 -0
- package/src/framework/field-components/FieldEditor.d.ts +10 -0
- package/src/framework/field-components/FieldEditor.jsx +58 -0
- package/src/framework/field-components/FieldPercent.d.ts +12 -0
- package/src/framework/field-components/FieldPercent.jsx +27 -0
- package/src/framework/field-components/FieldRemoteSelect.d.ts +13 -0
- package/src/framework/field-components/FieldRemoteSelect.jsx +87 -0
- package/src/framework/field-components/FieldRemoteSelectMultiple.d.ts +13 -0
- package/src/framework/field-components/FieldRemoteSelectMultiple.jsx +86 -0
- package/src/framework/field-components/FieldRemoteSelectMultipleInline.d.ts +20 -0
- package/src/framework/field-components/FieldRemoteSelectMultipleInline.jsx +86 -0
- package/src/framework/field-components/FieldRemoteTree.d.ts +21 -0
- package/src/framework/field-components/FieldRemoteTree.jsx +45 -0
- package/src/framework/field-components/FieldRemoteTreeCascader.d.ts +23 -0
- package/src/framework/field-components/FieldRemoteTreeCascader.jsx +61 -0
- package/src/framework/field-components/FieldRemoteTreeSelect.d.ts +17 -0
- package/src/framework/field-components/FieldRemoteTreeSelect.jsx +67 -0
- package/src/framework/field-components/FieldRemoteTreeSelectMultiple.d.ts +17 -0
- package/src/framework/field-components/FieldRemoteTreeSelectMultiple.jsx +68 -0
- package/src/framework/field-components/FieldSysOrgTree.d.ts +12 -0
- package/src/framework/field-components/FieldSysOrgTree.jsx +23 -0
- package/src/framework/field-components/FieldSysOrgTreeSelect.d.ts +12 -0
- package/src/framework/field-components/FieldSysOrgTreeSelect.jsx +23 -0
- package/src/framework/{components/field/FieldEditTable/index.d.ts → field-components/FieldTable.d.ts} +5 -2
- package/src/framework/{components/field/FieldEditTable/index.jsx → field-components/FieldTable.jsx} +29 -21
- package/src/framework/{components/field/select/FieldTableSelect/index.d.ts → field-components/FieldTableSelect.d.ts} +4 -14
- package/src/framework/field-components/FieldTableSelect.jsx +59 -0
- package/src/framework/{components/field/upload → field-components}/FieldUploadFile.d.ts +0 -1
- package/src/framework/{components/field/upload → field-components}/FieldUploadFile.jsx +5 -9
- package/src/framework/field-components/index.ts +20 -0
- package/src/framework/{components/OrgTree.jsx → field-components/system/OrgTree.tsx} +8 -7
- package/src/framework/{components/RoleTree.jsx → field-components/system/RoleTree.tsx} +3 -3
- package/src/framework/field-components/system/index.ts +2 -0
- package/src/framework/index.ts +4 -0
- package/src/framework/utils/ArrUtils.ts +229 -0
- package/src/framework/utils/ColorsUtils.ts +378 -0
- package/src/framework/utils/{date.js → DateUtils.ts} +69 -69
- package/src/framework/utils/DeviceUtils.ts +46 -0
- package/src/framework/utils/DomUtils.ts +50 -0
- package/src/framework/utils/EventBusUtils.ts +143 -0
- package/src/framework/utils/MessageUtils.tsx +182 -0
- package/src/framework/utils/ObjectUtils.ts +113 -0
- package/src/framework/utils/StorageUtils.ts +67 -0
- package/src/framework/utils/StringUtils.ts +410 -0
- package/src/framework/utils/TreeUtils.ts +248 -0
- package/src/framework/utils/UrlUtils.ts +152 -0
- package/src/framework/utils/UuidUtils.ts +88 -0
- package/src/framework/utils/ValidateUtils.ts +28 -0
- package/src/framework/utils/index.ts +16 -0
- package/src/framework/utils/system/DictUtils.ts +97 -0
- package/src/framework/utils/system/FormRegistryUtils.ts +77 -0
- package/src/framework/utils/system/HttpUtils.ts +246 -0
- package/src/framework/utils/system/PageUtils.ts +153 -0
- package/src/framework/utils/system/PermUtils.ts +79 -0
- package/src/framework/utils/system/SysUtils.ts +97 -0
- package/src/framework/utils/system/ThemeUtils.ts +27 -0
- package/src/framework/utils/system/index.ts +7 -0
- package/src/framework/view-components/ViewBoolean.jsx +4 -0
- package/src/framework/view-components/index.js +3 -0
- package/src/layouts/PageRender.jsx +2 -2
- package/src/layouts/admin/HeaderRight.jsx +9 -9
- package/src/layouts/admin/TabPageRender.jsx +2 -2
- package/src/layouts/admin/index.jsx +27 -40
- package/src/layouts/admin/index.less +2 -1
- package/src/layouts/index.jsx +30 -38
- package/src/layouts/index.less +0 -21
- package/src/loading.jsx +2 -2
- package/src/{components → pages/flowable}/InstanceInfo.jsx +5 -4
- package/src/pages/flowable/design/customTranslate/customTranslate.js +16 -0
- package/src/pages/flowable/design/customTranslate/translations-properties-panel.js +10 -0
- package/src/pages/flowable/design/customTranslate/translations.js +144 -0
- package/src/pages/flowable/design/descriptors/flowable.json +1109 -0
- package/src/pages/flowable/design/index.jsx +61 -234
- package/src/pages/flowable/design/provider/FlowablePropertiesProvider.js +75 -0
- package/src/pages/flowable/design/provider/index.js +6 -0
- package/src/pages/flowable/design/provider/properties/ConditionDesign.jsx +175 -0
- package/src/pages/flowable/design/provider/properties/ConditionProps.jsx +76 -0
- package/src/pages/flowable/design/provider/properties/DelegateExpressionProps.js +54 -0
- package/src/pages/flowable/design/provider/properties/FormProps.js +55 -0
- package/src/pages/flowable/design/provider/properties/MultiInstanceProps.js +100 -0
- package/src/pages/flowable/design/provider/properties/UserTaskForm.jsx +48 -0
- package/src/pages/flowable/design/provider/properties/utils.jsx +35 -0
- package/src/pages/flowable/index.jsx +28 -69
- package/src/pages/flowable/monitor/definition.jsx +87 -0
- package/src/pages/flowable/monitor/instance/index.jsx +177 -0
- package/src/pages/flowable/monitor/instance/view.jsx +102 -0
- package/src/pages/flowable/monitor/task.jsx +93 -0
- package/src/pages/flowable/task/form.jsx +5 -5
- package/src/pages/flowable/task/index.jsx +5 -5
- package/src/pages/flowable/test/index.jsx +13 -10
- package/src/pages/index.jsx +8 -13
- package/src/pages/login.jsx +8 -8
- package/src/pages/{api/doc.jsx → system/api/ApiDoc.jsx} +56 -47
- package/src/pages/system/api/index.jsx +268 -0
- package/src/pages/system/api/perm.jsx +69 -0
- package/src/pages/system/config/index.jsx +3 -3
- package/src/pages/system/dict/Dict.jsx +2 -3
- package/src/pages/system/dict/DictItem.jsx +5 -5
- package/src/pages/system/file/index.jsx +13 -5
- package/src/pages/{job → system/job}/index.jsx +124 -39
- package/src/pages/system/log/index.jsx +3 -3
- package/src/pages/system/org/index.jsx +11 -12
- package/src/pages/system/role/index.jsx +11 -11
- package/src/pages/system/role/perm.jsx +8 -8
- package/src/pages/system/sysManual/index.jsx +6 -6
- package/src/pages/system/user/UserPerm.jsx +7 -42
- package/src/pages/system/user/index.jsx +13 -17
- package/src/pages/test.jsx +188 -3
- package/src/pages/ureport/index.jsx +4 -4
- package/src/pages/userCenter/ChangePassword.jsx +3 -4
- package/src/pages/userCenter/index.jsx +2 -2
- package/src/pages/userCenter/manual.jsx +3 -7
- package/src/pages/userCenter/message.jsx +5 -5
- package/config/dist/config.local.js +0 -23
- package/src/components/InstanceStatusInfo.jsx +0 -79
- package/src/components/StreamLog.jsx +0 -27
- package/src/components/flow/BpmnUtils.js +0 -85
- package/src/components/flow/customTranslate/customTranslate.js +0 -19
- package/src/components/flow/customTranslate/translations.js +0 -79
- package/src/components/flow/design/form/ConditionForm.jsx +0 -316
- package/src/components/flow/design/form/ServiceTaskForm.jsx +0 -55
- package/src/components/flow/design/form/TimerEventDefinitionForm.jsx +0 -62
- package/src/components/flow/design/form/UserTaskForm.jsx +0 -211
- package/src/components/flow/design/palette.js +0 -39
- package/src/components/monitor/AllDefinition.jsx +0 -46
- package/src/components/monitor/AllInstance.jsx +0 -76
- package/src/forms/driverForm.jsx +0 -18
- package/src/framework/components/ButtonList.jsx +0 -91
- package/src/framework/components/Echarts/index.d.ts +0 -10
- package/src/framework/components/Echarts/index.jsx +0 -49
- package/src/framework/components/EditTable/index.d.ts +0 -11
- package/src/framework/components/EditTable/index.jsx +0 -85
- package/src/framework/components/FieldRemoteTree.jsx +0 -20
- package/src/framework/components/HasPerm.jsx +0 -18
- package/src/framework/components/ImageView.d.ts +0 -12
- package/src/framework/components/ImageView.jsx +0 -64
- package/src/framework/components/MsgBox.jsx +0 -180
- package/src/framework/components/PageLoading.jsx +0 -31
- package/src/framework/components/Panel/index.d.ts +0 -11
- package/src/framework/components/Panel/index.jsx +0 -24
- package/src/framework/components/Panel/index.less +0 -0
- package/src/framework/components/field/FieldAutoTime/index.tsx +0 -46
- package/src/framework/components/field/FieldBoolean/index.tsx +0 -92
- package/src/framework/components/field/FieldEditTable/index.less +0 -29
- package/src/framework/components/field/FieldEditor.jsx +0 -48
- package/src/framework/components/field/FieldFileBase64/index.d.ts +0 -15
- package/src/framework/components/field/FieldFileBase64/index.jsx +0 -23
- package/src/framework/components/field/FieldImageBase64/index.d.ts +0 -15
- package/src/framework/components/field/FieldImageBase64/index.jsx +0 -22
- package/src/framework/components/field/FieldInput.jsx +0 -13
- package/src/framework/components/field/FieldOrgTree/index.tsx +0 -45
- package/src/framework/components/field/FieldPassword.jsx +0 -11
- package/src/framework/components/field/FieldProps.ts +0 -19
- package/src/framework/components/field/FieldRemoteTreeCascader.jsx +0 -75
- package/src/framework/components/field/FieldRemoteTreeCheckable.jsx +0 -81
- package/src/framework/components/field/FieldRemoteTreeMultipleSelect.jsx +0 -100
- package/src/framework/components/field/FieldRemoteTreeSelect.jsx +0 -82
- package/src/framework/components/field/FieldSelectPosition/index.tsx +0 -85
- package/src/framework/components/field/FieldTree.jsx +0 -45
- package/src/framework/components/field/dict/index.tsx +0 -110
- package/src/framework/components/field/flat-multiple-select/index.d.ts +0 -4
- package/src/framework/components/field/flat-multiple-select/index.jsx +0 -116
- package/src/framework/components/field/flat-multiple-select/index.less +0 -12
- package/src/framework/components/field/flat-select/index.d.ts +0 -4
- package/src/framework/components/field/flat-select/index.jsx +0 -107
- package/src/framework/components/field/flat-select/index.less +0 -12
- package/src/framework/components/field/index.js +0 -33
- package/src/framework/components/field/input-number-percent/index.d.ts +0 -11
- package/src/framework/components/field/input-number-percent/index.jsx +0 -28
- package/src/framework/components/field/select/FieldSelect/index.d.ts +0 -39
- package/src/framework/components/field/select/FieldSelect/index.jsx +0 -156
- package/src/framework/components/field/select/FieldTableSelect/index.jsx +0 -155
- package/src/framework/components/field/select/index.jsx +0 -2
- package/src/framework/components/field/switch-y-n/index.d.ts +0 -11
- package/src/framework/components/field/switch-y-n/index.jsx +0 -31
- package/src/framework/components/field/text/index.tsx +0 -7
- package/src/framework/components/field/time/DatePickerString.tsx +0 -37
- package/src/framework/components/field/time/DateTimePickerString.tsx +0 -42
- package/src/framework/components/field/time/FieldDateRange.d.ts +0 -9
- package/src/framework/components/field/time/FieldDateRange.jsx +0 -49
- package/src/framework/components/field/time/HHmmPickerString.tsx +0 -42
- package/src/framework/components/field/time/MonthPickerString.tsx +0 -45
- package/src/framework/components/field/time/TimePickerTool.ts +0 -14
- package/src/framework/components/field/time/YearPickerString.tsx +0 -41
- package/src/framework/components/field/time/YearQuarterString.tsx +0 -38
- package/src/framework/components/field/time/index.tsx +0 -7
- package/src/framework/components/field/upload/FieldUploadCropImage/index.d.ts +0 -22
- package/src/framework/components/field/upload/FieldUploadCropImage/index.jsx +0 -11
- package/src/framework/components/field/upload/FieldUploadImage.d.ts +0 -7
- package/src/framework/components/field/upload/FieldUploadImage.jsx +0 -16
- package/src/framework/components/field/upload/index.jsx +0 -3
- package/src/framework/components/system.jsx +0 -29
- package/src/framework/components/view/ViewBoolean.jsx +0 -15
- package/src/framework/components/view/ViewBooleanEnableDisable.jsx +0 -16
- package/src/framework/components/view/ViewText.jsx +0 -9
- package/src/framework/index.js +0 -3
- package/src/framework/system/dict.js +0 -88
- package/src/framework/system/formRegistry.js +0 -58
- package/src/framework/system/http.jsx +0 -290
- package/src/framework/system/index.js +0 -13
- package/src/framework/system/page.js +0 -109
- package/src/framework/system/permission.js +0 -44
- package/src/framework/system/sys.js +0 -60
- package/src/framework/system/theme.js +0 -17
- package/src/framework/utils/arr.js +0 -118
- package/src/framework/utils/browser.js +0 -24
- package/src/framework/utils/color.js +0 -269
- package/src/framework/utils/debounce.js +0 -33
- package/src/framework/utils/dom.js +0 -16
- package/src/framework/utils/eventBus.js +0 -70
- package/src/framework/utils/html.js +0 -13
- package/src/framework/utils/index.js +0 -17
- package/src/framework/utils/obj.js +0 -72
- package/src/framework/utils/storage.js +0 -37
- package/src/framework/utils/str.js +0 -297
- package/src/framework/utils/tree.js +0 -175
- package/src/framework/utils/uid.js +0 -76
- package/src/framework/utils/url.js +0 -84
- package/src/framework/utils/validate.js +0 -9
- package/src/pages/api/accessLog/index.jsx +0 -108
- package/src/pages/api/accountResource/index.jsx +0 -149
- package/src/pages/api/index.jsx +0 -163
- package/src/pages/api/resource.jsx +0 -18
- package/src/pages/flowable/instance/view.jsx +0 -13
- package/src/pages/flowable/monitor.jsx +0 -106
- package/src/pages/flowable/test/form.jsx +0 -31
- package/src/pages/job/logList.jsx +0 -100
- package/src/pages/job/status.jsx +0 -84
- /package/src/framework/components/{ButtonList.d.ts → system/ButtonList.d.ts} +0 -0
- /package/src/framework/{components/EditTable/index.less → field-components/FieldTable.less} +0 -0
- /package/src/framework/{components/view → view-components}/ViewPassword.jsx +0 -0
- /package/src/{index.js → index.ts} +0 -0
- /package/src/{components/flow → pages/flowable}/design/contextPad.js +0 -0
|
@@ -0,0 +1,1109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Flowable",
|
|
3
|
+
"uri": "http://flowable.org/bpmn",
|
|
4
|
+
"prefix": "flowable",
|
|
5
|
+
"xml": {
|
|
6
|
+
"tagAlias": "lowerCase"
|
|
7
|
+
},
|
|
8
|
+
"associations": [],
|
|
9
|
+
"types": [
|
|
10
|
+
{
|
|
11
|
+
"name": "Definitions",
|
|
12
|
+
"isAbstract": true,
|
|
13
|
+
"extends": [
|
|
14
|
+
"bpmn:Definitions"
|
|
15
|
+
],
|
|
16
|
+
"properties": [
|
|
17
|
+
{
|
|
18
|
+
"name": "diagramRelationId",
|
|
19
|
+
"isAttr": true,
|
|
20
|
+
"type": "String"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "InOutBinding",
|
|
26
|
+
"superClass": [
|
|
27
|
+
"Element"
|
|
28
|
+
],
|
|
29
|
+
"isAbstract": true,
|
|
30
|
+
"properties": [
|
|
31
|
+
{
|
|
32
|
+
"name": "source",
|
|
33
|
+
"isAttr": true,
|
|
34
|
+
"type": "String"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "sourceExpression",
|
|
38
|
+
"isAttr": true,
|
|
39
|
+
"type": "String"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "target",
|
|
43
|
+
"isAttr": true,
|
|
44
|
+
"type": "String"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "businessKey",
|
|
48
|
+
"isAttr": true,
|
|
49
|
+
"type": "String"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "local",
|
|
53
|
+
"isAttr": true,
|
|
54
|
+
"type": "Boolean",
|
|
55
|
+
"default": false
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "variables",
|
|
59
|
+
"isAttr": true,
|
|
60
|
+
"type": "String"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "In",
|
|
66
|
+
"superClass": [
|
|
67
|
+
"InOutBinding"
|
|
68
|
+
],
|
|
69
|
+
"meta": {
|
|
70
|
+
"allowedIn": [
|
|
71
|
+
"bpmn:CallActivity"
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "Out",
|
|
77
|
+
"superClass": [
|
|
78
|
+
"InOutBinding"
|
|
79
|
+
],
|
|
80
|
+
"meta": {
|
|
81
|
+
"allowedIn": [
|
|
82
|
+
"bpmn:CallActivity"
|
|
83
|
+
]
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "AsyncCapable",
|
|
88
|
+
"isAbstract": true,
|
|
89
|
+
"extends": [
|
|
90
|
+
"bpmn:Activity",
|
|
91
|
+
"bpmn:Gateway",
|
|
92
|
+
"bpmn:Event"
|
|
93
|
+
],
|
|
94
|
+
"properties": [
|
|
95
|
+
{
|
|
96
|
+
"name": "async",
|
|
97
|
+
"isAttr": true,
|
|
98
|
+
"type": "Boolean",
|
|
99
|
+
"default": false
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "asyncBefore",
|
|
103
|
+
"isAttr": true,
|
|
104
|
+
"type": "Boolean",
|
|
105
|
+
"default": false
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "asyncAfter",
|
|
109
|
+
"isAttr": true,
|
|
110
|
+
"type": "Boolean",
|
|
111
|
+
"default": false
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "exclusive",
|
|
115
|
+
"isAttr": true,
|
|
116
|
+
"type": "Boolean",
|
|
117
|
+
"default": true
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "JobPriorized",
|
|
123
|
+
"isAbstract": true,
|
|
124
|
+
"extends": [
|
|
125
|
+
"bpmn:Process",
|
|
126
|
+
"flowable:AsyncCapable"
|
|
127
|
+
],
|
|
128
|
+
"properties": [
|
|
129
|
+
{
|
|
130
|
+
"name": "jobPriority",
|
|
131
|
+
"isAttr": true,
|
|
132
|
+
"type": "String"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "SignalEventDefinition",
|
|
138
|
+
"isAbstract": true,
|
|
139
|
+
"extends": [
|
|
140
|
+
"bpmn:SignalEventDefinition"
|
|
141
|
+
],
|
|
142
|
+
"properties": [
|
|
143
|
+
{
|
|
144
|
+
"name": "async",
|
|
145
|
+
"isAttr": true,
|
|
146
|
+
"type": "Boolean",
|
|
147
|
+
"default": false
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "ErrorEventDefinition",
|
|
153
|
+
"isAbstract": true,
|
|
154
|
+
"extends": [
|
|
155
|
+
"bpmn:ErrorEventDefinition"
|
|
156
|
+
],
|
|
157
|
+
"properties": [
|
|
158
|
+
{
|
|
159
|
+
"name": "errorCodeVariable",
|
|
160
|
+
"isAttr": true,
|
|
161
|
+
"type": "String"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "errorMessageVariable",
|
|
165
|
+
"isAttr": true,
|
|
166
|
+
"type": "String"
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "Error",
|
|
172
|
+
"isAbstract": true,
|
|
173
|
+
"extends": [
|
|
174
|
+
"bpmn:Error"
|
|
175
|
+
],
|
|
176
|
+
"properties": [
|
|
177
|
+
{
|
|
178
|
+
"name": "flowable:errorMessage",
|
|
179
|
+
"isAttr": true,
|
|
180
|
+
"type": "String"
|
|
181
|
+
}
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "PotentialStarter",
|
|
186
|
+
"superClass": [
|
|
187
|
+
"Element"
|
|
188
|
+
],
|
|
189
|
+
"properties": [
|
|
190
|
+
{
|
|
191
|
+
"name": "resourceAssignmentExpression",
|
|
192
|
+
"type": "bpmn:ResourceAssignmentExpression"
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "FormSupported",
|
|
198
|
+
"isAbstract": true,
|
|
199
|
+
"extends": [
|
|
200
|
+
"bpmn:StartEvent",
|
|
201
|
+
"bpmn:UserTask"
|
|
202
|
+
],
|
|
203
|
+
"properties": [
|
|
204
|
+
{
|
|
205
|
+
"name": "formHandlerClass",
|
|
206
|
+
"isAttr": true,
|
|
207
|
+
"type": "String"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "formKey",
|
|
211
|
+
"isAttr": true,
|
|
212
|
+
"type": "String"
|
|
213
|
+
}
|
|
214
|
+
]
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "TemplateSupported",
|
|
218
|
+
"isAbstract": true,
|
|
219
|
+
"extends": [
|
|
220
|
+
"bpmn:Process",
|
|
221
|
+
"bpmn:FlowElement"
|
|
222
|
+
],
|
|
223
|
+
"properties": [
|
|
224
|
+
{
|
|
225
|
+
"name": "modelerTemplate",
|
|
226
|
+
"isAttr": true,
|
|
227
|
+
"type": "String"
|
|
228
|
+
}
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "Initiator",
|
|
233
|
+
"isAbstract": true,
|
|
234
|
+
"extends": [
|
|
235
|
+
"bpmn:StartEvent"
|
|
236
|
+
],
|
|
237
|
+
"properties": [
|
|
238
|
+
{
|
|
239
|
+
"name": "initiator",
|
|
240
|
+
"isAttr": true,
|
|
241
|
+
"type": "String"
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "ScriptTask",
|
|
247
|
+
"isAbstract": true,
|
|
248
|
+
"extends": [
|
|
249
|
+
"bpmn:ScriptTask"
|
|
250
|
+
],
|
|
251
|
+
"properties": [
|
|
252
|
+
{
|
|
253
|
+
"name": "resultVariable",
|
|
254
|
+
"isAttr": true,
|
|
255
|
+
"type": "String"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "resource",
|
|
259
|
+
"isAttr": true,
|
|
260
|
+
"type": "String"
|
|
261
|
+
}
|
|
262
|
+
]
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "Process",
|
|
266
|
+
"isAbstract": true,
|
|
267
|
+
"extends": [
|
|
268
|
+
"bpmn:Process"
|
|
269
|
+
],
|
|
270
|
+
"properties": [
|
|
271
|
+
{
|
|
272
|
+
"name": "candidateStarterGroups",
|
|
273
|
+
"isAttr": true,
|
|
274
|
+
"type": "String"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "candidateStarterUsers",
|
|
278
|
+
"isAttr": true,
|
|
279
|
+
"type": "String"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "versionTag",
|
|
283
|
+
"isAttr": true,
|
|
284
|
+
"type": "String"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "historyTimeToLive",
|
|
288
|
+
"isAttr": true,
|
|
289
|
+
"type": "String"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "isStartableInTasklist",
|
|
293
|
+
"isAttr": true,
|
|
294
|
+
"type": "Boolean",
|
|
295
|
+
"default": true
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "executionListener",
|
|
299
|
+
"isAbstract": true,
|
|
300
|
+
"type": "Expression"
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"name": "EscalationEventDefinition",
|
|
306
|
+
"isAbstract": true,
|
|
307
|
+
"extends": [
|
|
308
|
+
"bpmn:EscalationEventDefinition"
|
|
309
|
+
],
|
|
310
|
+
"properties": [
|
|
311
|
+
{
|
|
312
|
+
"name": "escalationCodeVariable",
|
|
313
|
+
"isAttr": true,
|
|
314
|
+
"type": "String"
|
|
315
|
+
}
|
|
316
|
+
]
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"name": "FormalExpression",
|
|
320
|
+
"isAbstract": true,
|
|
321
|
+
"extends": [
|
|
322
|
+
"bpmn:FormalExpression"
|
|
323
|
+
],
|
|
324
|
+
"properties": [
|
|
325
|
+
{
|
|
326
|
+
"name": "resource",
|
|
327
|
+
"isAttr": true,
|
|
328
|
+
"type": "String"
|
|
329
|
+
}
|
|
330
|
+
]
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"name": "multiinstance_type",
|
|
334
|
+
"superClass": [
|
|
335
|
+
"Element"
|
|
336
|
+
]
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"name": "multiinstance_condition",
|
|
340
|
+
"superClass": [
|
|
341
|
+
"Element"
|
|
342
|
+
]
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "Assignable",
|
|
346
|
+
"extends": [
|
|
347
|
+
"bpmn:UserTask"
|
|
348
|
+
],
|
|
349
|
+
"properties": [
|
|
350
|
+
{
|
|
351
|
+
"name": "assignee",
|
|
352
|
+
"isAttr": true,
|
|
353
|
+
"type": "String"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "candidateUsers",
|
|
357
|
+
"isAttr": true,
|
|
358
|
+
"type": "String"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"name": "candidateGroups",
|
|
362
|
+
"isAttr": true,
|
|
363
|
+
"type": "String"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "dueDate",
|
|
367
|
+
"isAttr": true,
|
|
368
|
+
"type": "String"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "followUpDate",
|
|
372
|
+
"isAttr": true,
|
|
373
|
+
"type": "String"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "priority",
|
|
377
|
+
"isAttr": true,
|
|
378
|
+
"type": "String"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "multiinstance_condition",
|
|
382
|
+
"isAttr": true,
|
|
383
|
+
"type": "String"
|
|
384
|
+
}
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"name": "CallActivity",
|
|
389
|
+
"extends": [
|
|
390
|
+
"bpmn:CallActivity"
|
|
391
|
+
],
|
|
392
|
+
"properties": [
|
|
393
|
+
{
|
|
394
|
+
"name": "calledElementBinding",
|
|
395
|
+
"isAttr": true,
|
|
396
|
+
"type": "String",
|
|
397
|
+
"default": "latest"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"name": "calledElementVersion",
|
|
401
|
+
"isAttr": true,
|
|
402
|
+
"type": "String"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"name": "calledElementVersionTag",
|
|
406
|
+
"isAttr": true,
|
|
407
|
+
"type": "String"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "calledElementTenantId",
|
|
411
|
+
"isAttr": true,
|
|
412
|
+
"type": "String"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"name": "caseRef",
|
|
416
|
+
"isAttr": true,
|
|
417
|
+
"type": "String"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"name": "caseBinding",
|
|
421
|
+
"isAttr": true,
|
|
422
|
+
"type": "String",
|
|
423
|
+
"default": "latest"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "caseVersion",
|
|
427
|
+
"isAttr": true,
|
|
428
|
+
"type": "String"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "caseTenantId",
|
|
432
|
+
"isAttr": true,
|
|
433
|
+
"type": "String"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "variableMappingClass",
|
|
437
|
+
"isAttr": true,
|
|
438
|
+
"type": "String"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"name": "variableMappingDelegateExpression",
|
|
442
|
+
"isAttr": true,
|
|
443
|
+
"type": "String"
|
|
444
|
+
}
|
|
445
|
+
]
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"name": "ServiceTaskLike",
|
|
449
|
+
"extends": [
|
|
450
|
+
"bpmn:ServiceTask",
|
|
451
|
+
"bpmn:BusinessRuleTask",
|
|
452
|
+
"bpmn:SendTask",
|
|
453
|
+
"bpmn:MessageEventDefinition"
|
|
454
|
+
],
|
|
455
|
+
"properties": [
|
|
456
|
+
{
|
|
457
|
+
"name": "expression",
|
|
458
|
+
"isAttr": true,
|
|
459
|
+
"type": "String"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "class",
|
|
463
|
+
"isAttr": true,
|
|
464
|
+
"type": "String"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"name": "delegateExpression",
|
|
468
|
+
"isAttr": true,
|
|
469
|
+
"type": "String"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"name": "resultVariable",
|
|
473
|
+
"isAttr": true,
|
|
474
|
+
"type": "String"
|
|
475
|
+
}
|
|
476
|
+
]
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"name": "DmnCapable",
|
|
480
|
+
"extends": [
|
|
481
|
+
"bpmn:BusinessRuleTask"
|
|
482
|
+
],
|
|
483
|
+
"properties": [
|
|
484
|
+
{
|
|
485
|
+
"name": "decisionRef",
|
|
486
|
+
"isAttr": true,
|
|
487
|
+
"type": "String"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"name": "decisionRefBinding",
|
|
491
|
+
"isAttr": true,
|
|
492
|
+
"type": "String",
|
|
493
|
+
"default": "latest"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"name": "decisionRefVersion",
|
|
497
|
+
"isAttr": true,
|
|
498
|
+
"type": "String"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "mapDecisionResult",
|
|
502
|
+
"isAttr": true,
|
|
503
|
+
"type": "String",
|
|
504
|
+
"default": "resultList"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "decisionRefTenantId",
|
|
508
|
+
"isAttr": true,
|
|
509
|
+
"type": "String"
|
|
510
|
+
}
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"name": "ExternalCapable",
|
|
515
|
+
"extends": [
|
|
516
|
+
"flowable:ServiceTaskLike"
|
|
517
|
+
],
|
|
518
|
+
"properties": [
|
|
519
|
+
{
|
|
520
|
+
"name": "type",
|
|
521
|
+
"isAttr": true,
|
|
522
|
+
"type": "String"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "topic",
|
|
526
|
+
"isAttr": true,
|
|
527
|
+
"type": "String"
|
|
528
|
+
}
|
|
529
|
+
]
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"name": "TaskPriorized",
|
|
533
|
+
"extends": [
|
|
534
|
+
"bpmn:Process",
|
|
535
|
+
"flowable:ExternalCapable"
|
|
536
|
+
],
|
|
537
|
+
"properties": [
|
|
538
|
+
{
|
|
539
|
+
"name": "taskPriority",
|
|
540
|
+
"isAttr": true,
|
|
541
|
+
"type": "String"
|
|
542
|
+
}
|
|
543
|
+
]
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"name": "Properties",
|
|
547
|
+
"superClass": [
|
|
548
|
+
"Element"
|
|
549
|
+
],
|
|
550
|
+
"meta": {
|
|
551
|
+
"allowedIn": [
|
|
552
|
+
"*"
|
|
553
|
+
]
|
|
554
|
+
},
|
|
555
|
+
"properties": [
|
|
556
|
+
{
|
|
557
|
+
"name": "values",
|
|
558
|
+
"type": "Property",
|
|
559
|
+
"isMany": true
|
|
560
|
+
}
|
|
561
|
+
]
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"name": "Property",
|
|
565
|
+
"superClass": [
|
|
566
|
+
"Element"
|
|
567
|
+
],
|
|
568
|
+
"properties": [
|
|
569
|
+
{
|
|
570
|
+
"name": "id",
|
|
571
|
+
"type": "String",
|
|
572
|
+
"isAttr": true
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"name": "name",
|
|
576
|
+
"type": "String",
|
|
577
|
+
"isAttr": true
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"name": "value",
|
|
581
|
+
"type": "String",
|
|
582
|
+
"isAttr": true
|
|
583
|
+
}
|
|
584
|
+
]
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"name": "Connector",
|
|
588
|
+
"superClass": [
|
|
589
|
+
"Element"
|
|
590
|
+
],
|
|
591
|
+
"meta": {
|
|
592
|
+
"allowedIn": [
|
|
593
|
+
"flowable:ServiceTaskLike"
|
|
594
|
+
]
|
|
595
|
+
},
|
|
596
|
+
"properties": [
|
|
597
|
+
{
|
|
598
|
+
"name": "inputOutput",
|
|
599
|
+
"type": "InputOutput"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"name": "connectorId",
|
|
603
|
+
"type": "String"
|
|
604
|
+
}
|
|
605
|
+
]
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"name": "InputOutput",
|
|
609
|
+
"superClass": [
|
|
610
|
+
"Element"
|
|
611
|
+
],
|
|
612
|
+
"meta": {
|
|
613
|
+
"allowedIn": [
|
|
614
|
+
"bpmn:FlowNode",
|
|
615
|
+
"flowable:Connector"
|
|
616
|
+
]
|
|
617
|
+
},
|
|
618
|
+
"properties": [
|
|
619
|
+
{
|
|
620
|
+
"name": "inputOutput",
|
|
621
|
+
"type": "InputOutput"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"name": "connectorId",
|
|
625
|
+
"type": "String"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"name": "inputParameters",
|
|
629
|
+
"isMany": true,
|
|
630
|
+
"type": "InputParameter"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"name": "outputParameters",
|
|
634
|
+
"isMany": true,
|
|
635
|
+
"type": "OutputParameter"
|
|
636
|
+
}
|
|
637
|
+
]
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"name": "InputOutputParameter",
|
|
641
|
+
"properties": [
|
|
642
|
+
{
|
|
643
|
+
"name": "name",
|
|
644
|
+
"isAttr": true,
|
|
645
|
+
"type": "String"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"name": "value",
|
|
649
|
+
"isBody": true,
|
|
650
|
+
"type": "String"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "definition",
|
|
654
|
+
"type": "InputOutputParameterDefinition"
|
|
655
|
+
}
|
|
656
|
+
]
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "InputOutputParameterDefinition",
|
|
660
|
+
"isAbstract": true
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "List",
|
|
664
|
+
"superClass": [
|
|
665
|
+
"InputOutputParameterDefinition"
|
|
666
|
+
],
|
|
667
|
+
"properties": [
|
|
668
|
+
{
|
|
669
|
+
"name": "items",
|
|
670
|
+
"isMany": true,
|
|
671
|
+
"type": "InputOutputParameterDefinition"
|
|
672
|
+
}
|
|
673
|
+
]
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"name": "Map",
|
|
677
|
+
"superClass": [
|
|
678
|
+
"InputOutputParameterDefinition"
|
|
679
|
+
],
|
|
680
|
+
"properties": [
|
|
681
|
+
{
|
|
682
|
+
"name": "entries",
|
|
683
|
+
"isMany": true,
|
|
684
|
+
"type": "Entry"
|
|
685
|
+
}
|
|
686
|
+
]
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"name": "Entry",
|
|
690
|
+
"properties": [
|
|
691
|
+
{
|
|
692
|
+
"name": "key",
|
|
693
|
+
"isAttr": true,
|
|
694
|
+
"type": "String"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "value",
|
|
698
|
+
"isBody": true,
|
|
699
|
+
"type": "String"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"name": "definition",
|
|
703
|
+
"type": "InputOutputParameterDefinition"
|
|
704
|
+
}
|
|
705
|
+
]
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"name": "Value",
|
|
709
|
+
"superClass": [
|
|
710
|
+
"InputOutputParameterDefinition"
|
|
711
|
+
],
|
|
712
|
+
"properties": [
|
|
713
|
+
{
|
|
714
|
+
"name": "id",
|
|
715
|
+
"isAttr": true,
|
|
716
|
+
"type": "String"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"name": "name",
|
|
720
|
+
"isAttr": true,
|
|
721
|
+
"type": "String"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "value",
|
|
725
|
+
"isBody": true,
|
|
726
|
+
"type": "String"
|
|
727
|
+
}
|
|
728
|
+
]
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"name": "Script",
|
|
732
|
+
"superClass": [
|
|
733
|
+
"InputOutputParameterDefinition"
|
|
734
|
+
],
|
|
735
|
+
"properties": [
|
|
736
|
+
{
|
|
737
|
+
"name": "scriptFormat",
|
|
738
|
+
"isAttr": true,
|
|
739
|
+
"type": "String"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"name": "resource",
|
|
743
|
+
"isAttr": true,
|
|
744
|
+
"type": "String"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "value",
|
|
748
|
+
"isBody": true,
|
|
749
|
+
"type": "String"
|
|
750
|
+
}
|
|
751
|
+
]
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"name": "Field",
|
|
755
|
+
"superClass": [
|
|
756
|
+
"Element"
|
|
757
|
+
],
|
|
758
|
+
"meta": {
|
|
759
|
+
"allowedIn": [
|
|
760
|
+
"flowable:ServiceTaskLike",
|
|
761
|
+
"flowable:ExecutionListener",
|
|
762
|
+
"flowable:TaskListener"
|
|
763
|
+
]
|
|
764
|
+
},
|
|
765
|
+
"properties": [
|
|
766
|
+
{
|
|
767
|
+
"name": "name",
|
|
768
|
+
"isAttr": true,
|
|
769
|
+
"type": "String"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"name": "expression",
|
|
773
|
+
"type": "String"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"name": "stringValue",
|
|
777
|
+
"isAttr": true,
|
|
778
|
+
"type": "String"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"name": "string",
|
|
782
|
+
"type": "String"
|
|
783
|
+
}
|
|
784
|
+
]
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"name": "InputParameter",
|
|
788
|
+
"superClass": [
|
|
789
|
+
"InputOutputParameter"
|
|
790
|
+
]
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"name": "OutputParameter",
|
|
794
|
+
"superClass": [
|
|
795
|
+
"InputOutputParameter"
|
|
796
|
+
]
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"name": "Collectable",
|
|
800
|
+
"isAbstract": true,
|
|
801
|
+
"extends": [
|
|
802
|
+
"bpmn:MultiInstanceLoopCharacteristics"
|
|
803
|
+
],
|
|
804
|
+
"superClass": [
|
|
805
|
+
"flowable:AsyncCapable"
|
|
806
|
+
],
|
|
807
|
+
"properties": [
|
|
808
|
+
{
|
|
809
|
+
"name": "collection",
|
|
810
|
+
"isAttr": true,
|
|
811
|
+
"type": "String"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"name": "elementVariable",
|
|
815
|
+
"isAttr": true,
|
|
816
|
+
"type": "String"
|
|
817
|
+
}
|
|
818
|
+
]
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"name": "FailedJobRetryTimeCycle",
|
|
822
|
+
"superClass": [
|
|
823
|
+
"Element"
|
|
824
|
+
],
|
|
825
|
+
"meta": {
|
|
826
|
+
"allowedIn": [
|
|
827
|
+
"flowable:AsyncCapable",
|
|
828
|
+
"bpmn:MultiInstanceLoopCharacteristics"
|
|
829
|
+
]
|
|
830
|
+
},
|
|
831
|
+
"properties": [
|
|
832
|
+
{
|
|
833
|
+
"name": "body",
|
|
834
|
+
"isBody": true,
|
|
835
|
+
"type": "String"
|
|
836
|
+
}
|
|
837
|
+
]
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"name": "ExecutionListener",
|
|
841
|
+
"superClass": [
|
|
842
|
+
"Element"
|
|
843
|
+
],
|
|
844
|
+
"meta": {
|
|
845
|
+
"allowedIn": [
|
|
846
|
+
"bpmn:Task",
|
|
847
|
+
"bpmn:ServiceTask",
|
|
848
|
+
"bpmn:UserTask",
|
|
849
|
+
"bpmn:BusinessRuleTask",
|
|
850
|
+
"bpmn:ScriptTask",
|
|
851
|
+
"bpmn:ReceiveTask",
|
|
852
|
+
"bpmn:ManualTask",
|
|
853
|
+
"bpmn:ExclusiveGateway",
|
|
854
|
+
"bpmn:SequenceFlow",
|
|
855
|
+
"bpmn:ParallelGateway",
|
|
856
|
+
"bpmn:InclusiveGateway",
|
|
857
|
+
"bpmn:EventBasedGateway",
|
|
858
|
+
"bpmn:StartEvent",
|
|
859
|
+
"bpmn:IntermediateCatchEvent",
|
|
860
|
+
"bpmn:IntermediateThrowEvent",
|
|
861
|
+
"bpmn:EndEvent",
|
|
862
|
+
"bpmn:BoundaryEvent",
|
|
863
|
+
"bpmn:CallActivity",
|
|
864
|
+
"bpmn:SubProcess",
|
|
865
|
+
"bpmn:Process"
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
"properties": [
|
|
869
|
+
{
|
|
870
|
+
"name": "expression",
|
|
871
|
+
"isAttr": true,
|
|
872
|
+
"type": "String"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"name": "class",
|
|
876
|
+
"isAttr": true,
|
|
877
|
+
"type": "String"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"name": "delegateExpression",
|
|
881
|
+
"isAttr": true,
|
|
882
|
+
"type": "String"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"name": "event",
|
|
886
|
+
"isAttr": true,
|
|
887
|
+
"type": "String"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"name": "script",
|
|
891
|
+
"type": "Script"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"name": "fields",
|
|
895
|
+
"type": "Field",
|
|
896
|
+
"isMany": true
|
|
897
|
+
}
|
|
898
|
+
]
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "TaskListener",
|
|
902
|
+
"superClass": [
|
|
903
|
+
"Element"
|
|
904
|
+
],
|
|
905
|
+
"meta": {
|
|
906
|
+
"allowedIn": [
|
|
907
|
+
"bpmn:UserTask"
|
|
908
|
+
]
|
|
909
|
+
},
|
|
910
|
+
"properties": [
|
|
911
|
+
{
|
|
912
|
+
"name": "expression",
|
|
913
|
+
"isAttr": true,
|
|
914
|
+
"type": "String"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"name": "class",
|
|
918
|
+
"isAttr": true,
|
|
919
|
+
"type": "String"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"name": "delegateExpression",
|
|
923
|
+
"isAttr": true,
|
|
924
|
+
"type": "String"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"name": "event",
|
|
928
|
+
"isAttr": true,
|
|
929
|
+
"type": "String"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"name": "script",
|
|
933
|
+
"type": "Script"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"name": "fields",
|
|
937
|
+
"type": "Field",
|
|
938
|
+
"isMany": true
|
|
939
|
+
}
|
|
940
|
+
]
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"name": "FormProperty",
|
|
944
|
+
"superClass": [
|
|
945
|
+
"Element"
|
|
946
|
+
],
|
|
947
|
+
"meta": {
|
|
948
|
+
"allowedIn": [
|
|
949
|
+
"bpmn:StartEvent",
|
|
950
|
+
"bpmn:UserTask"
|
|
951
|
+
]
|
|
952
|
+
},
|
|
953
|
+
"properties": [
|
|
954
|
+
{
|
|
955
|
+
"name": "id",
|
|
956
|
+
"type": "String",
|
|
957
|
+
"isAttr": true
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"name": "name",
|
|
961
|
+
"type": "String",
|
|
962
|
+
"isAttr": true
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"name": "type",
|
|
966
|
+
"type": "String",
|
|
967
|
+
"isAttr": true
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"name": "required",
|
|
971
|
+
"type": "String",
|
|
972
|
+
"isAttr": true
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"name": "readable",
|
|
976
|
+
"type": "String",
|
|
977
|
+
"isAttr": true
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"name": "writable",
|
|
981
|
+
"type": "String",
|
|
982
|
+
"isAttr": true
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"name": "variable",
|
|
986
|
+
"type": "String",
|
|
987
|
+
"isAttr": true
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"name": "expression",
|
|
991
|
+
"type": "String",
|
|
992
|
+
"isAttr": true
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"name": "datePattern",
|
|
996
|
+
"type": "String",
|
|
997
|
+
"isAttr": true
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"name": "default",
|
|
1001
|
+
"type": "String",
|
|
1002
|
+
"isAttr": true
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"name": "values",
|
|
1006
|
+
"type": "Value",
|
|
1007
|
+
"isMany": true
|
|
1008
|
+
}
|
|
1009
|
+
]
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"name": "FormProperty",
|
|
1013
|
+
"superClass": [
|
|
1014
|
+
"Element"
|
|
1015
|
+
],
|
|
1016
|
+
"properties": [
|
|
1017
|
+
{
|
|
1018
|
+
"name": "id",
|
|
1019
|
+
"type": "String",
|
|
1020
|
+
"isAttr": true
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"name": "label",
|
|
1024
|
+
"type": "String",
|
|
1025
|
+
"isAttr": true
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"name": "type",
|
|
1029
|
+
"type": "String",
|
|
1030
|
+
"isAttr": true
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"name": "datePattern",
|
|
1034
|
+
"type": "String",
|
|
1035
|
+
"isAttr": true
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"name": "defaultValue",
|
|
1039
|
+
"type": "String",
|
|
1040
|
+
"isAttr": true
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"name": "properties",
|
|
1044
|
+
"type": "Properties"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"name": "validation",
|
|
1048
|
+
"type": "Validation"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"name": "values",
|
|
1052
|
+
"type": "Value",
|
|
1053
|
+
"isMany": true
|
|
1054
|
+
}
|
|
1055
|
+
]
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"name": "Validation",
|
|
1059
|
+
"superClass": [
|
|
1060
|
+
"Element"
|
|
1061
|
+
],
|
|
1062
|
+
"properties": [
|
|
1063
|
+
{
|
|
1064
|
+
"name": "constraints",
|
|
1065
|
+
"type": "Constraint",
|
|
1066
|
+
"isMany": true
|
|
1067
|
+
}
|
|
1068
|
+
]
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"name": "Constraint",
|
|
1072
|
+
"superClass": [
|
|
1073
|
+
"Element"
|
|
1074
|
+
],
|
|
1075
|
+
"properties": [
|
|
1076
|
+
{
|
|
1077
|
+
"name": "name",
|
|
1078
|
+
"type": "String",
|
|
1079
|
+
"isAttr": true
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"name": "config",
|
|
1083
|
+
"type": "String",
|
|
1084
|
+
"isAttr": true
|
|
1085
|
+
}
|
|
1086
|
+
]
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"name": "ConditionalEventDefinition",
|
|
1090
|
+
"isAbstract": true,
|
|
1091
|
+
"extends": [
|
|
1092
|
+
"bpmn:ConditionalEventDefinition"
|
|
1093
|
+
],
|
|
1094
|
+
"properties": [
|
|
1095
|
+
{
|
|
1096
|
+
"name": "variableName",
|
|
1097
|
+
"isAttr": true,
|
|
1098
|
+
"type": "String"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "variableEvent",
|
|
1102
|
+
"isAttr": true,
|
|
1103
|
+
"type": "String"
|
|
1104
|
+
}
|
|
1105
|
+
]
|
|
1106
|
+
}
|
|
1107
|
+
],
|
|
1108
|
+
"emumerations": []
|
|
1109
|
+
}
|