Information Technology Reference
In-Depth Information
Sprint management technical overview
As we have the initial description of our business process, we can go ahead and model it in-
side our business process designer tool. If we do that in jBPM6 web designer (which will
be introduced in Chapter 5 , Creating a Process Project in the KIE Workbench ) or in any
other BPMN2 tool, we will get something like the following diagram:
This process definition only contains the activities and flow objects as we described them
previously. We haven't added any technical detail or data mappings yet. We first need to
work on the completion of the model and reach a state where we are satisfied with what the
process represents, in this case, for the development area.
If we analyze the XML generated by this simple model, we will see how each task is being
represented inside the XML file. You can find it in the code section in the chapter-03/
BPMN2-scenarios/src/main/resources/sprintManagement-V1.bpmn2
file. The code is as follows:
<bpmn2:definitions ...>
<bpmn2:process id="sprintManagementV1" name="Sprint
Management"
isExecutable="true">
<bpmn2:startEvent id="_1" name="New Requirement">
<bpmn2:outgoing>_1_2</bpmn2:outgoing>
</bpmn2:startEvent>
<bpmn2:businessRuleTask id="_2" name="Assign Story
Points">
<bpmn2:incoming>_1_2</bpmn2:incoming>
<bpmn2:outgoing>_2_3</bpmn2:outgoing>
</bpmn2:businessRuleTask>
<bpmn2:userTask id="_3" name="Develop Requirement Code">
<bpmn2:incoming>_2_3</bpmn2:incoming>
<bpmn2:outgoing>_3_4</bpmn2:outgoing>
</bpmn2:userTask>
Search WWH ::




Custom Search