Skip to content

Instantly share code, notes, and snippets.

@tijsrademakers
Last active December 20, 2016 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tijsrademakers/a712e7f15a6dbe93e34fcee278d810d7 to your computer and use it in GitHub Desktop.
Save tijsrademakers/a712e7f15a6dbe93e34fcee278d810d7 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<definitions id="introExample"
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:flowable="http://flowable.org/bpmn"
targetNamespace="http://flowable.org/examples">
<process id="intro">
<startEvent id="start"/>
<sequenceFlow id="flow1" sourceRef="start" targetRef="introTask" />
<serviceTask id="introTask" flowable:class="org.flowable.intro.IntroTask" />
<sequenceFlow id="flow2" sourceRef="introTask" targetRef="end" />
<endEvent id="end" />
</process>
</definitions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment