Skip to content

Instantly share code, notes, and snippets.

@tijsrademakers
Last active December 15, 2015 10:29
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/5246149 to your computer and use it in GitHub Desktop.
Save tijsrademakers/5246149 to your computer and use it in GitHub Desktop.
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:activiti="http://activiti.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.activiti.org/test">
<process id="camelProcess">
<startEvent id="start" />
<sequenceFlow id="flow1" sourceRef="start" targetRef="camelTask" />
<serviceTask id="camelTask" name="Invoke Camel route" activiti:type="camel" />
<sequenceFlow id="flow2" sourceRef="camelTask" targetRef="receiveTask" />
<receiveTask id="receiveTask" name="Wait for response" />
<sequenceFlow id="flow3" sourceRef="receiveTask" 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