0 Replies Latest reply on Feb 3, 2013 5:03 AM by jbpm5developer

    jBPM console: tasks not shown

    jbpm5developer

      Hi all, I desperately need help on this. I created my own process definition bpmn2 file using drools guvnor/oryx designer and deployed it in jbpm console. The process is shown in process overview and process is succesfully started. However no task is listed on personal task list and no error shown either. my process definition consists of 3 user task. First task should be performed by krisv but it is not shown on his task list. processinstanceinfo table in database was also updated after starting the process but not the task table. Im using jbpm 5.2 on tomcat and postgresql. Please please help me on this. Been trying to fix it for weeks!

       

       

      How do you assign a task to a user? I did it by specifying th actor in the oryx designer. I use jbpm console REST api to start a new process instance which is localhost:8080/gwt-console-server/rs/process/definition/{my.process.id.here}/new_instance

       

      Here is my bpmn2 process definition file:

       

      <?xml version="1.0" encoding="UTF-8"?>

      <bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.omg.org/bpmn20" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:drools="http://www.jboss.org/drools" id="_VJT60W2kEeK-dKPEOPAB4g" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd" targetNamespace="http://www.omg.org/bpmn20">

        <bpmn2:itemDefinition id="_employeeItem"/>

        <bpmn2:itemDefinition id="_reasonItem"/>

        <bpmn2:itemDefinition id="_performanceItem"/>

        <bpmn2:itemDefinition id="_contentItem"/>

        <bpmn2:process id="DentISt.AddApointment" drools:packageName="DentISt" name="AddApointment" isExecutable="true">

          <bpmn2:property id="employee" itemSubjectRef="_employeeItem"/>

          <bpmn2:property id="reason" itemSubjectRef="_reasonItem"/>

          <bpmn2:property id="performance" itemSubjectRef="_performanceItem"/>

          <bpmn2:property id="content" itemSubjectRef="_contentItem"/>

          <bpmn2:startEvent id="_DEA3A4EB-0B0C-4281-9468-35DD23E084F5" drools:bgcolor="#9acd32" drools:selectable="true" name="">

            <bpmn2:outgoing>_3F43031C-6DA9-48A9-A5A3-D309CA4C669A</bpmn2:outgoing>

          </bpmn2:startEvent>

          <bpmn2:userTask id="_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854" drools:selectable="true" drools:taskName="PerformanceEvaluation" drools:scriptFormat="http://www.java.com/java" name="Self Evaluation">

            <bpmn2:incoming>_3F43031C-6DA9-48A9-A5A3-D309CA4C669A</bpmn2:incoming>

            <bpmn2:outgoing>_22D4E98D-6334-4476-9AC3-7D323302FDDC</bpmn2:outgoing>

            <bpmn2:ioSpecification id="_VJWXEG2kEeK-dKPEOPAB4g">

              <bpmn2:dataInput id="_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854_TaskNameInput" name="TaskName"/>

              <bpmn2:dataOutput id="_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854_performanceOutput" name="performance"/>

              <bpmn2:inputSet id="_VJWXEm2kEeK-dKPEOPAB4g"/>

              <bpmn2:outputSet id="_VJWXEW2kEeK-dKPEOPAB4g">

                <bpmn2:dataOutputRefs>_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854_performanceOutput</bpmn2:dataOutputRefs>

              </bpmn2:outputSet>

            </bpmn2:ioSpecification>

            <bpmn2:dataInputAssociation id="_VJWXE22kEeK-dKPEOPAB4g">

              <bpmn2:targetRef>_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854_TaskNameInput</bpmn2:targetRef>

              <bpmn2:assignment id="_VJWXFG2kEeK-dKPEOPAB4g">

                <bpmn2:from xsi:type="bpmn2:tFormalExpression" id="_VJWXFW2kEeK-dKPEOPAB4g">PerformanceEvaluation</bpmn2:from>

                <bpmn2:to xsi:type="bpmn2:tFormalExpression" id="_VJWXFm2kEeK-dKPEOPAB4g">_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854_TaskNameInput</bpmn2:to>

              </bpmn2:assignment>

            </bpmn2:dataInputAssociation>

            <bpmn2:dataOutputAssociation id="_VJWXF22kEeK-dKPEOPAB4g">

              <bpmn2:sourceRef>_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854_performanceOutput</bpmn2:sourceRef>

              <bpmn2:targetRef>performance</bpmn2:targetRef>

            </bpmn2:dataOutputAssociation>

            <bpmn2:potentialOwner id="_VJWXGG2kEeK-dKPEOPAB4g">

              <bpmn2:resourceAssignmentExpression id="_VJWXGW2kEeK-dKPEOPAB4g">

                <bpmn2:formalExpression id="_VJWXGm2kEeK-dKPEOPAB4g">krisv</bpmn2:formalExpression>

              </bpmn2:resourceAssignmentExpression>

            </bpmn2:potentialOwner>

          </bpmn2:userTask>

          <bpmn2:sequenceFlow id="_3F43031C-6DA9-48A9-A5A3-D309CA4C669A" drools:bgcolor="#000000" drools:selectable="true" sourceRef="_DEA3A4EB-0B0C-4281-9468-35DD23E084F5" targetRef="_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854"/>

          <bpmn2:sequenceFlow id="_22D4E98D-6334-4476-9AC3-7D323302FDDC" drools:bgcolor="#000000" drools:selectable="true" sourceRef="_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854" targetRef="_499A9BE2-B78A-4FD6-B54E-D23E059D76EE"/>

          <bpmn2:parallelGateway id="_499A9BE2-B78A-4FD6-B54E-D23E059D76EE" drools:bgcolor="#f0e68c" drools:selectable="true" drools:bordercolor="#a67f00" name="" gatewayDirection="Diverging">

            <bpmn2:incoming>_22D4E98D-6334-4476-9AC3-7D323302FDDC</bpmn2:incoming>

            <bpmn2:outgoing>_4D331511-7EE9-43F3-AFE0-361D4DF0172C</bpmn2:outgoing>

            <bpmn2:outgoing>_AD73811F-9434-432F-BBBF-CEB8C847A5E7</bpmn2:outgoing>

          </bpmn2:parallelGateway>

          <bpmn2:userTask id="_AD478E9C-A4E2-495A-9588-6B323696CCF8" drools:selectable="true" drools:taskName="PerformanceEvaluation" drools:scriptFormat="http://www.java.com/java" name="HR Evaluation">

            <bpmn2:incoming>_4D331511-7EE9-43F3-AFE0-361D4DF0172C</bpmn2:incoming>

            <bpmn2:outgoing>_A9366D3B-526F-4A0C-B4F8-3000E81B2E76</bpmn2:outgoing>

            <bpmn2:ioSpecification id="_VJWXG22kEeK-dKPEOPAB4g">

              <bpmn2:dataInput id="_AD478E9C-A4E2-495A-9588-6B323696CCF8_TaskNameInput" name="TaskName"/>

              <bpmn2:inputSet id="_VJWXHG2kEeK-dKPEOPAB4g"/>

              <bpmn2:outputSet id="_VJW-IG2kEeK-dKPEOPAB4g"/>

            </bpmn2:ioSpecification>

            <bpmn2:dataInputAssociation id="_VJW-IW2kEeK-dKPEOPAB4g">

              <bpmn2:targetRef>_AD478E9C-A4E2-495A-9588-6B323696CCF8_TaskNameInput</bpmn2:targetRef>

              <bpmn2:assignment id="_VJW-Im2kEeK-dKPEOPAB4g">

                <bpmn2:from xsi:type="bpmn2:tFormalExpression" id="_VJW-I22kEeK-dKPEOPAB4g">PerformanceEvaluation</bpmn2:from>

                <bpmn2:to xsi:type="bpmn2:tFormalExpression" id="_VJW-JG2kEeK-dKPEOPAB4g">_AD478E9C-A4E2-495A-9588-6B323696CCF8_TaskNameInput</bpmn2:to>

              </bpmn2:assignment>

            </bpmn2:dataInputAssociation>

            <bpmn2:potentialOwner id="_VJW-JW2kEeK-dKPEOPAB4g">

              <bpmn2:resourceAssignmentExpression id="_VJW-Jm2kEeK-dKPEOPAB4g">

                <bpmn2:formalExpression id="_VJW-J22kEeK-dKPEOPAB4g">mary</bpmn2:formalExpression>

              </bpmn2:resourceAssignmentExpression>

            </bpmn2:potentialOwner>

          </bpmn2:userTask>

          <bpmn2:sequenceFlow id="_4D331511-7EE9-43F3-AFE0-361D4DF0172C" drools:bgcolor="#000000" drools:selectable="true" sourceRef="_499A9BE2-B78A-4FD6-B54E-D23E059D76EE" targetRef="_AD478E9C-A4E2-495A-9588-6B323696CCF8"/>

          <bpmn2:userTask id="_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62" drools:selectable="true" drools:taskName="PerformanceEvaluation" drools:scriptFormat="http://www.java.com/java" name="PM Evaluation">

            <bpmn2:incoming>_AD73811F-9434-432F-BBBF-CEB8C847A5E7</bpmn2:incoming>

            <bpmn2:outgoing>_C3A70EC9-3841-455F-9CA2-94877D693CF9</bpmn2:outgoing>

            <bpmn2:ioSpecification id="_VJW-KG2kEeK-dKPEOPAB4g">

              <bpmn2:dataInput id="_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62_TaskNameInput" name="TaskName"/>

              <bpmn2:inputSet id="_VJW-KW2kEeK-dKPEOPAB4g"/>

              <bpmn2:outputSet id="_VJW-Km2kEeK-dKPEOPAB4g"/>

            </bpmn2:ioSpecification>

            <bpmn2:dataInputAssociation id="_VJW-K22kEeK-dKPEOPAB4g">

              <bpmn2:targetRef>_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62_TaskNameInput</bpmn2:targetRef>

              <bpmn2:assignment id="_VJW-LG2kEeK-dKPEOPAB4g">

                <bpmn2:from xsi:type="bpmn2:tFormalExpression" id="_VJW-LW2kEeK-dKPEOPAB4g">PerformanceEvaluation</bpmn2:from>

                <bpmn2:to xsi:type="bpmn2:tFormalExpression" id="_VJW-Lm2kEeK-dKPEOPAB4g">_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62_TaskNameInput</bpmn2:to>

              </bpmn2:assignment>

            </bpmn2:dataInputAssociation>

            <bpmn2:potentialOwner id="_VJW-L22kEeK-dKPEOPAB4g">

              <bpmn2:resourceAssignmentExpression id="_VJW-MG2kEeK-dKPEOPAB4g">

                <bpmn2:formalExpression id="_VJW-MW2kEeK-dKPEOPAB4g">john</bpmn2:formalExpression>

              </bpmn2:resourceAssignmentExpression>

            </bpmn2:potentialOwner>

          </bpmn2:userTask>

          <bpmn2:sequenceFlow id="_AD73811F-9434-432F-BBBF-CEB8C847A5E7" drools:bgcolor="#000000" drools:selectable="true" sourceRef="_499A9BE2-B78A-4FD6-B54E-D23E059D76EE" targetRef="_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62"/>

          <bpmn2:sequenceFlow id="_C3A70EC9-3841-455F-9CA2-94877D693CF9" drools:bgcolor="#000000" drools:selectable="true" sourceRef="_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62" targetRef="_68AC06FE-AC93-4C33-84CF-47A55D1C0016"/>

          <bpmn2:parallelGateway id="_68AC06FE-AC93-4C33-84CF-47A55D1C0016" drools:bgcolor="#f0e68c" drools:selectable="true" drools:bordercolor="#a67f00" name="" gatewayDirection="Converging">

            <bpmn2:incoming>_A9366D3B-526F-4A0C-B4F8-3000E81B2E76</bpmn2:incoming>

            <bpmn2:incoming>_C3A70EC9-3841-455F-9CA2-94877D693CF9</bpmn2:incoming>

            <bpmn2:outgoing>_BDBDF52E-2570-446F-A71B-990905648AE7</bpmn2:outgoing>

          </bpmn2:parallelGateway>

          <bpmn2:sequenceFlow id="_A9366D3B-526F-4A0C-B4F8-3000E81B2E76" drools:bgcolor="#000000" drools:selectable="true" sourceRef="_AD478E9C-A4E2-495A-9588-6B323696CCF8" targetRef="_68AC06FE-AC93-4C33-84CF-47A55D1C0016"/>

          <bpmn2:endEvent id="_03B0E055-054C-47C7-9B11-523BCB2ECA57" drools:bgcolor="#ff6347" drools:selectable="true" name="">

            <bpmn2:incoming>_BDBDF52E-2570-446F-A71B-990905648AE7</bpmn2:incoming>

          </bpmn2:endEvent>

          <bpmn2:sequenceFlow id="_BDBDF52E-2570-446F-A71B-990905648AE7" drools:bgcolor="#000000" drools:selectable="true" sourceRef="_68AC06FE-AC93-4C33-84CF-47A55D1C0016" targetRef="_03B0E055-054C-47C7-9B11-523BCB2ECA57"/>

        </bpmn2:process>

        <bpmndi:BPMNDiagram id="_VJW-Mm2kEeK-dKPEOPAB4g">

          <bpmndi:BPMNPlane id="_VJXlMG2kEeK-dKPEOPAB4g" bpmnElement="DentISt.AddApointment">

            <bpmndi:BPMNShape id="_VJXlMW2kEeK-dKPEOPAB4g" bpmnElement="_DEA3A4EB-0B0C-4281-9468-35DD23E084F5">

              <dc:Bounds height="30.0" width="30.0" x="435.0" y="156.0"/>

            </bpmndi:BPMNShape>

            <bpmndi:BPMNShape id="_VJXlMm2kEeK-dKPEOPAB4g" bpmnElement="_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854">

              <dc:Bounds height="80.0" width="100.0" x="510.0" y="126.0"/>

            </bpmndi:BPMNShape>

            <bpmndi:BPMNEdge id="_VJXlM22kEeK-dKPEOPAB4g" bpmnElement="_3F43031C-6DA9-48A9-A5A3-D309CA4C669A">

              <di:waypoint xsi:type="dc:Point" x="450.0" y="171.0"/>

              <di:waypoint xsi:type="dc:Point" x="487.0" y="171.0"/>

              <di:waypoint xsi:type="dc:Point" x="487.0" y="166.0"/>

              <di:waypoint xsi:type="dc:Point" x="560.0" y="166.0"/>

            </bpmndi:BPMNEdge>

            <bpmndi:BPMNEdge id="_VJXlNG2kEeK-dKPEOPAB4g" bpmnElement="_22D4E98D-6334-4476-9AC3-7D323302FDDC">

              <di:waypoint xsi:type="dc:Point" x="560.0" y="166.0"/>

              <di:waypoint xsi:type="dc:Point" x="665.0" y="161.0"/>

            </bpmndi:BPMNEdge>

            <bpmndi:BPMNShape id="_VJXlNW2kEeK-dKPEOPAB4g" bpmnElement="_499A9BE2-B78A-4FD6-B54E-D23E059D76EE">

              <dc:Bounds height="40.0" width="40.0" x="645.0" y="141.0"/>

            </bpmndi:BPMNShape>

            <bpmndi:BPMNShape id="_VJXlNm2kEeK-dKPEOPAB4g" bpmnElement="_AD478E9C-A4E2-495A-9588-6B323696CCF8">

              <dc:Bounds height="80.0" width="100.0" x="780.0" y="36.0"/>

            </bpmndi:BPMNShape>

            <bpmndi:BPMNEdge id="_VJXlN22kEeK-dKPEOPAB4g" bpmnElement="_4D331511-7EE9-43F3-AFE0-361D4DF0172C">

              <di:waypoint xsi:type="dc:Point" x="665.0" y="161.0"/>

              <di:waypoint xsi:type="dc:Point" x="665.0" y="76.0"/>

              <di:waypoint xsi:type="dc:Point" x="830.0" y="76.0"/>

            </bpmndi:BPMNEdge>

            <bpmndi:BPMNShape id="_VJXlOG2kEeK-dKPEOPAB4g" bpmnElement="_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62">

              <dc:Bounds height="80.0" width="100.0" x="765.0" y="210.0"/>

            </bpmndi:BPMNShape>

            <bpmndi:BPMNEdge id="_VJXlOW2kEeK-dKPEOPAB4g" bpmnElement="_AD73811F-9434-432F-BBBF-CEB8C847A5E7">

              <di:waypoint xsi:type="dc:Point" x="665.0" y="161.0"/>

              <di:waypoint xsi:type="dc:Point" x="665.0" y="250.0"/>

              <di:waypoint xsi:type="dc:Point" x="815.0" y="250.0"/>

            </bpmndi:BPMNEdge>

            <bpmndi:BPMNEdge id="_VJXlOm2kEeK-dKPEOPAB4g" bpmnElement="_C3A70EC9-3841-455F-9CA2-94877D693CF9">

              <di:waypoint xsi:type="dc:Point" x="815.0" y="250.0"/>

              <di:waypoint xsi:type="dc:Point" x="980.0" y="250.0"/>

              <di:waypoint xsi:type="dc:Point" x="980.0" y="146.0"/>

            </bpmndi:BPMNEdge>

            <bpmndi:BPMNShape id="_VJXlO22kEeK-dKPEOPAB4g" bpmnElement="_68AC06FE-AC93-4C33-84CF-47A55D1C0016">

              <dc:Bounds height="40.0" width="40.0" x="960.0" y="126.0"/>

            </bpmndi:BPMNShape>

            <bpmndi:BPMNEdge id="_VJXlPG2kEeK-dKPEOPAB4g" bpmnElement="_A9366D3B-526F-4A0C-B4F8-3000E81B2E76">

              <di:waypoint xsi:type="dc:Point" x="830.0" y="76.0"/>

              <di:waypoint xsi:type="dc:Point" x="980.0" y="76.0"/>

              <di:waypoint xsi:type="dc:Point" x="980.0" y="146.0"/>

            </bpmndi:BPMNEdge>

            <bpmndi:BPMNShape id="_VJXlPW2kEeK-dKPEOPAB4g" bpmnElement="_03B0E055-054C-47C7-9B11-523BCB2ECA57">

              <dc:Bounds height="28.0" width="28.0" x="1044.0" y="131.0"/>

            </bpmndi:BPMNShape>

            <bpmndi:BPMNEdge id="_VJXlPm2kEeK-dKPEOPAB4g" bpmnElement="_BDBDF52E-2570-446F-A71B-990905648AE7">

              <di:waypoint xsi:type="dc:Point" x="980.0" y="146.0"/>

              <di:waypoint xsi:type="dc:Point" x="1058.0" y="145.0"/>

            </bpmndi:BPMNEdge>

          </bpmndi:BPMNPlane>

        </bpmndi:BPMNDiagram>

        <bpmn2:relationship id="_VJXlP22kEeK-dKPEOPAB4g">

          <bpmn2:extensionElements>

            <drools:ProcessAnalysisData>

              <drools:Scenario xsi:type="drools:Scenario" id="default" name="Simulationscenario">

                <drools:ScenarioParameters xsi:type="drools:ScenarioParameters_._type" baseTimeUnit="s"/>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_DEA3A4EB-0B0C-4281-9468-35DD23E084F5" id="_VJXlQG2kEeK-dKPEOPAB4g">

                  <drools:TimeParameters xsi:type="drools:TimeParameters">

                    <drools:WaitTime xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="0.0"/>

                    </drools:WaitTime>

                    <drools:TimeUnit>ms</drools:TimeUnit>

                  </drools:TimeParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_BDBDF52E-2570-446F-A71B-990905648AE7" id="_VJXlQW2kEeK-dKPEOPAB4g">

                  <drools:ControlParameters xsi:type="drools:ControlParameters">

                    <drools:Probability xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="100.0"/>

                    </drools:Probability>

                  </drools:ControlParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_3F43031C-6DA9-48A9-A5A3-D309CA4C669A" id="_VJYMQG2kEeK-dKPEOPAB4g">

                  <drools:ControlParameters xsi:type="drools:ControlParameters">

                    <drools:Probability xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="100.0"/>

                    </drools:Probability>

                  </drools:ControlParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_4D331511-7EE9-43F3-AFE0-361D4DF0172C" id="_VJYMQW2kEeK-dKPEOPAB4g">

                  <drools:ControlParameters xsi:type="drools:ControlParameters">

                    <drools:Probability xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="100.0"/>

                    </drools:Probability>

                  </drools:ControlParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_03B0E055-054C-47C7-9B11-523BCB2ECA57" id="_VJYMQm2kEeK-dKPEOPAB4g">

                  <drools:TimeParameters xsi:type="drools:TimeParameters">

                    <drools:ProcessingTime xsi:type="drools:Parameter">

                      <drools:RandomDistribution max="0.0" min="0.0"/>

                    </drools:ProcessingTime>

                    <drools:TimeUnit>ms</drools:TimeUnit>

                  </drools:TimeParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_AD478E9C-A4E2-495A-9588-6B323696CCF8" id="_VJYMQ22kEeK-dKPEOPAB4g">

                  <drools:TimeParameters xsi:type="drools:TimeParameters">

                    <drools:ProcessingTime xsi:type="drools:Parameter">

                      <drools:RandomDistribution max="0.0" min="0.0"/>

                    </drools:ProcessingTime>

                    <drools:TimeUnit>ms</drools:TimeUnit>

                  </drools:TimeParameters>

                  <drools:ResourceParameters xsi:type="drools:ResourceParameters">

                    <drools:Quantity xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="0.0"/>

                    </drools:Quantity>

                    <drools:Workinghours xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="8.0"/>

                    </drools:Workinghours>

                  </drools:ResourceParameters>

                  <drools:CostParameters xsi:type="drools:CostParameters">

                    <drools:UnitCost xsi:type="drools:Parameter">

                      <drools:DecimalParameter value="0"/>

                    </drools:UnitCost>

                  </drools:CostParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_22D4E98D-6334-4476-9AC3-7D323302FDDC" id="_VJYMRG2kEeK-dKPEOPAB4g">

                  <drools:ControlParameters xsi:type="drools:ControlParameters">

                    <drools:Probability xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="100.0"/>

                    </drools:Probability>

                  </drools:ControlParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_A9366D3B-526F-4A0C-B4F8-3000E81B2E76" id="_VJYMRW2kEeK-dKPEOPAB4g">

                  <drools:ControlParameters xsi:type="drools:ControlParameters">

                    <drools:Probability xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="100.0"/>

                    </drools:Probability>

                  </drools:ControlParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_C3A70EC9-3841-455F-9CA2-94877D693CF9" id="_VJYMRm2kEeK-dKPEOPAB4g">

                  <drools:ControlParameters xsi:type="drools:ControlParameters">

                    <drools:Probability xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="100.0"/>

                    </drools:Probability>

                  </drools:ControlParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_0DDA4197-5BA6-4F64-8F4A-535E61C6FA62" id="_VJYMR22kEeK-dKPEOPAB4g">

                  <drools:TimeParameters xsi:type="drools:TimeParameters">

                    <drools:ProcessingTime xsi:type="drools:Parameter">

                      <drools:RandomDistribution max="0.0" min="0.0"/>

                    </drools:ProcessingTime>

                    <drools:TimeUnit>ms</drools:TimeUnit>

                  </drools:TimeParameters>

                  <drools:ResourceParameters xsi:type="drools:ResourceParameters">

                    <drools:Quantity xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="0.0"/>

                    </drools:Quantity>

                    <drools:Workinghours xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="8.0"/>

                    </drools:Workinghours>

                  </drools:ResourceParameters>

                  <drools:CostParameters xsi:type="drools:CostParameters">

                    <drools:UnitCost xsi:type="drools:Parameter">

                      <drools:DecimalParameter value="0"/>

                    </drools:UnitCost>

                  </drools:CostParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_AD73811F-9434-432F-BBBF-CEB8C847A5E7" id="_VJYMSG2kEeK-dKPEOPAB4g">

                  <drools:ControlParameters xsi:type="drools:ControlParameters">

                    <drools:Probability xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="100.0"/>

                    </drools:Probability>

                  </drools:ControlParameters>

                </drools:ElementParameters>

                <drools:ElementParameters xsi:type="drools:ElementParameters_._type" elementId="_31BDAB23-B6A8-4B27-8DC8-2F8ADACC0854" id="_VJYMSW2kEeK-dKPEOPAB4g">

                  <drools:TimeParameters xsi:type="drools:TimeParameters">

                    <drools:ProcessingTime xsi:type="drools:Parameter">

                      <drools:RandomDistribution max="0.0" min="0.0"/>

                    </drools:ProcessingTime>

                    <drools:TimeUnit>ms</drools:TimeUnit>

                  </drools:TimeParameters>

                  <drools:ResourceParameters xsi:type="drools:ResourceParameters">

                    <drools:Quantity xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="0.0"/>

                    </drools:Quantity>

                    <drools:Workinghours xsi:type="drools:Parameter">

                      <drools:FloatingParameter value="8.0"/>

                    </drools:Workinghours>

                  </drools:ResourceParameters>

                  <drools:CostParameters xsi:type="drools:CostParameters">

                    <drools:UnitCost xsi:type="drools:Parameter">

                      <drools:DecimalParameter value="0"/>

                    </drools:UnitCost>

                  </drools:CostParameters>

                </drools:ElementParameters>

              </drools:Scenario>

            </drools:ProcessAnalysisData>

          </bpmn2:extensionElements>

          <bpmn2:source>_VJT60W2kEeK-dKPEOPAB4g</bpmn2:source>

          <bpmn2:target>_VJT60W2kEeK-dKPEOPAB4g</bpmn2:target>

        </bpmn2:relationship>

      </bpmn2:definitions>