-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update task properties, when changed, for case instance migration
- Loading branch information
1 parent
f344a93
commit afcbcac
Showing
4 changed files
with
211 additions
and
2 deletions.
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
13 changes: 13 additions & 0 deletions
13
...gine/src/test/resources/org/flowable/cmmn/test/migration/one-task-new-properties.cmmn.xml
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,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<definitions xmlns="http://www.omg.org/spec/CMMN/20151109/MODEL" xmlns:flowable="http://flowable.org/cmmn" | ||
targetNamespace="http://flowable.org/cmmn"> | ||
<case id="testCase" name="One Task Test Case" flowable:initiatorVariableName="initiator" | ||
flowable:candidateStarterGroups="flowableUser"> | ||
<casePlanModel id="onecaseplanmodel1" name="Case plan model" flowable:formFieldValidation="false"> | ||
<planItem id="planItem1" name="Task 1" definitionRef="humanTask1"/> | ||
<humanTask id="humanTask1" name="Task 2" flowable:formKey="myForm" flowable:category="myCategory"> | ||
<documentation>Example description</documentation> | ||
</humanTask> | ||
</casePlanModel> | ||
</case> | ||
</definitions> |
18 changes: 18 additions & 0 deletions
18
...gine/src/test/resources/org/flowable/cmmn/test/migration/two-task-new-properties.cmmn.xml
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<definitions xmlns="http://www.omg.org/spec/CMMN/20151109/MODEL" | ||
xmlns:flowable="http://flowable.org/cmmn" | ||
targetNamespace="http://flowable.org/cmmn"> | ||
<case id="testCase" name="Two Task Test Case" flowable:initiatorVariableName="initiator" | ||
flowable:candidateStarterGroups="flowableUser"> | ||
<casePlanModel id="onecaseplanmodel1" name="Case plan model"> | ||
<planItem id="planItem1" name="Task 1" definitionRef="humanTask1"/> | ||
<planItem id="planItem2" name="Task 3" definitionRef="humanTask2"/> | ||
<humanTask id="humanTask1" name="Task 2" flowable:formKey="myForm" flowable:category="myCategory"> | ||
<documentation>Example description</documentation> | ||
</humanTask> | ||
<humanTask id="humanTask2" name="Task 3" flowable:formKey="myForm2" flowable:category="myCategory2"> | ||
<documentation>Example description2</documentation> | ||
</humanTask> | ||
</casePlanModel> | ||
</case> | ||
</definitions> |