Skip to content

Commit

Permalink
feat: support ErrorEventDefinition for external ServiceTasks
Browse files Browse the repository at this point in the history
  • Loading branch information
azeghers committed Feb 4, 2021
1 parent b43825e commit 9d35a47
Showing 1 changed file with 67 additions and 22 deletions.
89 changes: 67 additions & 22 deletions resources/camunda.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@
"extends": [
"bpmn:ErrorEventDefinition"
],
"meta": {
"allowedIn": [
"bpmn:ServiceTask"
]
},
"properties": [
{
"name": "errorCodeVariable",
Expand Down Expand Up @@ -237,7 +242,9 @@
{
"name": "Initiator",
"isAbstract": true,
"extends": [ "bpmn:StartEvent" ],
"extends": [
"bpmn:StartEvent"
],
"properties": [
{
"name": "initiator",
Expand Down Expand Up @@ -330,7 +337,9 @@
},
{
"name": "Assignable",
"extends": [ "bpmn:UserTask" ],
"extends": [
"bpmn:UserTask"
],
"properties": [
{
"name": "assignee",
Expand Down Expand Up @@ -366,7 +375,9 @@
},
{
"name": "CallActivity",
"extends": [ "bpmn:CallActivity" ],
"extends": [
"bpmn:CallActivity"
],
"properties": [
{
"name": "calledElementBinding",
Expand Down Expand Up @@ -526,7 +537,9 @@
"Element"
],
"meta": {
"allowedIn": [ "*" ]
"allowedIn": [
"*"
]
},
"properties": [
{
Expand Down Expand Up @@ -637,7 +650,9 @@
},
{
"name": "List",
"superClass": [ "InputOutputParameterDefinition" ],
"superClass": [
"InputOutputParameterDefinition"
],
"properties": [
{
"name": "items",
Expand All @@ -648,7 +663,9 @@
},
{
"name": "Map",
"superClass": [ "InputOutputParameterDefinition" ],
"superClass": [
"InputOutputParameterDefinition"
],
"properties": [
{
"name": "entries",
Expand Down Expand Up @@ -701,7 +718,9 @@
},
{
"name": "Script",
"superClass": [ "InputOutputParameterDefinition" ],
"superClass": [
"InputOutputParameterDefinition"
],
"properties": [
{
"name": "scriptFormat",
Expand All @@ -722,7 +741,9 @@
},
{
"name": "Field",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"meta": {
"allowedIn": [
"camunda:ServiceTaskLike",
Expand Down Expand Up @@ -753,17 +774,25 @@
},
{
"name": "InputParameter",
"superClass": [ "InputOutputParameter" ]
"superClass": [
"InputOutputParameter"
]
},
{
"name": "OutputParameter",
"superClass": [ "InputOutputParameter" ]
"superClass": [
"InputOutputParameter"
]
},
{
"name": "Collectable",
"isAbstract": true,
"extends": [ "bpmn:MultiInstanceLoopCharacteristics" ],
"superClass": [ "camunda:AsyncCapable" ],
"extends": [
"bpmn:MultiInstanceLoopCharacteristics"
],
"superClass": [
"camunda:AsyncCapable"
],
"properties": [
{
"name": "collection",
Expand All @@ -779,7 +808,9 @@
},
{
"name": "FailedJobRetryTimeCycle",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"meta": {
"allowedIn": [
"camunda:AsyncCapable",
Expand All @@ -796,7 +827,9 @@
},
{
"name": "ExecutionListener",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"meta": {
"allowedIn": [
"bpmn:Task",
Expand Down Expand Up @@ -855,7 +888,9 @@
},
{
"name": "TaskListener",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"meta": {
"allowedIn": [
"bpmn:UserTask"
Expand Down Expand Up @@ -905,7 +940,9 @@
},
{
"name": "FormProperty",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"meta": {
"allowedIn": [
"bpmn:StartEvent",
Expand Down Expand Up @@ -972,7 +1009,9 @@
},
{
"name": "FormData",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"meta": {
"allowedIn": [
"bpmn:StartEvent",
Expand All @@ -994,7 +1033,9 @@
},
{
"name": "FormField",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"properties": [
{
"name": "id",
Expand Down Expand Up @@ -1038,7 +1079,9 @@
},
{
"name": "Validation",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"properties": [
{
"name": "constraints",
Expand All @@ -1049,7 +1092,9 @@
},
{
"name": "Constraint",
"superClass": [ "Element" ],
"superClass": [
"Element"
],
"properties": [
{
"name": "name",
Expand Down Expand Up @@ -1083,5 +1128,5 @@
]
}
],
"emumerations": [ ]
}
"emumerations": []
}

0 comments on commit 9d35a47

Please sign in to comment.