-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for zeebe:LinkedResource
Showing
7 changed files
with
221 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn"> | ||
<bpmn:process id="Process_1" isExecutable="true"> | ||
<bpmn:serviceTask id="collect-money" name="Collect Money"> | ||
<bpmn:extensionElements> | ||
<zeebe:linkedResources> | ||
<zeebe:linkedResource | ||
resourceId="=myScript" | ||
resourceType="RPA" | ||
/> | ||
<zeebe:linkedResource | ||
resourceId="=myScript" | ||
resourceType="RPA" | ||
bindingType="versionTag" | ||
versionTag="v1" | ||
/> | ||
<zeebe:linkedResource | ||
resourceId="=myScript" | ||
resourceType="RPA" | ||
linkName="myScript" | ||
bindingType="deployment" | ||
/> | ||
</zeebe:linkedResources> | ||
</bpmn:extensionElements> | ||
</bpmn:serviceTask> | ||
</bpmn:process> | ||
</bpmn:definitions> |
27 changes: 27 additions & 0 deletions
27
test/fixtures/xml/zeebe-service-task/serviceTask-zeebe-linkedResource.part.bpmn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<bpmn:serviceTask | ||
id="collect-money" name="Collect Money" | ||
xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" | ||
xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" | ||
> | ||
<bpmn:extensionElements> | ||
<zeebe:linkedResources> | ||
<zeebe:linkedResource | ||
resourceId="=myScript" | ||
resourceType="RPA" | ||
bindingType="latest" | ||
></zeebe:linkedResource> | ||
<zeebe:linkedResource | ||
resourceId="=myScript" | ||
resourceType="RPA" | ||
bindingType="versionTag" | ||
versionTag="v1" | ||
></zeebe:linkedResource> | ||
<zeebe:linkedResource | ||
resourceId="=myScript" | ||
resourceType="RPA" | ||
bindingType="deployment" | ||
linkName="myScript" | ||
></zeebe:linkedResource> | ||
</zeebe:linkedResources> | ||
</bpmn:extensionElements> | ||
</bpmn:serviceTask> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters