Skip to content

Commit

Permalink
added candidateUsers and candidateGroups attributes to xml
Browse files Browse the repository at this point in the history
  • Loading branch information
v20stepanenko committed Apr 29, 2022
1 parent 51e01f7 commit c8a62c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:flowable="http://flowable.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.flowable.org/processdef">
<process id="custom-service-task" name="custom-service-task" isExecutable="true">
<startEvent id="startEvent1" flowable:formFieldValidation="true"></startEvent>
<userTask id="userTaskId" name="A user task" flowable:async="true" flowable:exclusive="false" isForCompensation="true" flowable:assignee="$INITIATOR" flowable:dueDate="2020-01-01" flowable:category="SOME_CATEGORY" flowable:formKey="FORM_KEY" flowable:formFieldValidation="true" flowable:priority="1" flowable:skipExpression="#{do.skip}">
<userTask id="userTaskId" name="A user task" flowable:async="true" flowable:exclusive="false" isForCompensation="true" flowable:assignee="$INITIATOR" flowable:candidateUsers="user1" flowable:candidateGroups="group1" flowable:dueDate="2020-01-01" flowable:category="SOME_CATEGORY" flowable:formKey="FORM_KEY" flowable:formFieldValidation="true" flowable:priority="1" flowable:skipExpression="#{do.skip}">
<documentation>A user task to do</documentation>
<extensionElements>
<flowable:formProperty id="formPropertyId" name="A form property" type="string" expression="some expression" variable="some variable" default="123" required="true"></flowable:formProperty>
Expand All @@ -15,7 +15,7 @@
<bpmndi:BPMNShape bpmnElement="startEvent1" id="BPMNShape_startEvent1">
<omgdc:Bounds height="30.0" width="30.0" x="100.0" y="163.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="userTask" id="BPMNShape_userTask">
<bpmndi:BPMNShape bpmnElement="userTaskId" id="BPMNShape_userTask">
<omgdc:Bounds height="80.0" width="100.0" x="240.0" y="138.0"></omgdc:Bounds>
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
Expand Down

0 comments on commit c8a62c8

Please sign in to comment.