Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request #43 from adamfowleruk/release-1.0
Browse files Browse the repository at this point in the history
Release 1.0 accepted
  • Loading branch information
adamfowleruk committed Apr 18, 2015
2 parents c1b5456 + 71ec2a5 commit 245fa5c
Show file tree
Hide file tree
Showing 180 changed files with 13,498 additions and 370 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.mdown]
trim_trailing_whitespace = false
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
node_modules
mljsadmin.log
eclipse/org.eclipse.bpmn2.modeler.runtime.jboss.jbpm5
.DS_Store

5 changes: 5 additions & 0 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.bpmn2.modeler.core.bpmn2Nature</nature>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ show.advanced.properties=false
show.descriptions=true
show.id.attribute=false
simplify.lists=true
target.runtime=org.eclipse.bpmn2.modeler.runtime.none
target.runtime=org.eclipse.bpmn2.modeler.runtime.marklogic.workflow
26 changes: 21 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ your vision does not align with that of a project maintainer.
#### Create a branch for your feature

Okay, so you have decided to add something. Create an issue on GitHub if you haven't already, as you'll need the ID.
Now create a feature branch and start hacking:
Now create a feature branch and start hacking. You can do this on your own fork, or the main site if a 'Contributor':

```sh
$ git checkout -b feature-ISSUEID develop
Expand All @@ -87,6 +87,15 @@ $ git add myfile
$ git commit
```

To share the branch so others can see it (although advised not to work on it) do this:-

```sh
$ git push --set-upstream origin feature-ISSUEID
```

Now your feature branch [will be visible on GitHub](https://github.com/adamfowleruk/marklogicworkflow/branches) if you
are a contributor.

#### Formatting code

We use [.editorconfig][] to configure our editors for proper code formatting. If you don't
Expand All @@ -111,21 +120,28 @@ Make sure that all tests pass. Please, do not submit patches that fail.

When the feature is complete and ready to be integrated back in to the develop branch:-

1. If on your own Fork (99% of people):-
```sh
$ git commit -m "Fixes #ISSUEID"
$ git pull origin develop
$ git checkout develop
$ git merge feature-ISSUEID
$ git push
$ git branch -d feature-ISSUEID
```

Only do the last command if the others complete successfully. You may have to merge conflicts.
2. If an assigned admin user (contributor) on the main project, do this instead:-
```sh
$ git commit -m "Fixes #ISSUEID"
$ git push
```

Now issue a pull request for your changes to the main project.


You're now done! Adding the 'Fixes #ISSUEID' comment to the last commit automatically closes the issue with a reference
to your code.

### Further information

[issue tracker]: https://github.com/adamfowleruk/marklogicworkflow/issues
[.editorconfig]: http://editorconfig.org/
- [issue tracker](https://github.com/adamfowleruk/marklogicworkflow/issues)
- [.editorconfig](http://editorconfig.org/)
1 change: 1 addition & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Copyright 2012 MarkLogic Corporation


Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Expand Down
127 changes: 95 additions & 32 deletions data/examples/bpmn2/011_gateways_test.bpmn

Large diffs are not rendered by default.

137 changes: 119 additions & 18 deletions data/examples/bpmn2/021-initiating-attachment.bpmn

Large diffs are not rendered by default.

81 changes: 81 additions & 0 deletions data/examples/bpmn2/022-email-test.bpmn
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- origin at X=0.0 Y=0.0 -->
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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:ext="http://org.eclipse.bpmn2/ext" xmlns:xs="http://www.w3.org/2001/XMLSchema" id="Definitions_1" exporter="org.eclipse.bpmn2.modeler.core" exporterVersion="1.1.3.201503241414" targetNamespace="http://marklogic.com/workflow">
<bpmn2:itemDefinition id="ItemDefinition_1" isCollection="false" structureRef="xs:string"/>
<bpmn2:message id="Message_1" itemRef="ItemDefinition_1" name="BlankMessage">
<bpmn2:extensionElements>
<ext:style/>
</bpmn2:extensionElements>
</bpmn2:message>
<bpmn2:message id="Message_2" itemRef="ItemDefinition_1" name="TestEmail">
<bpmn2:extensionElements>
<ext:style/>
</bpmn2:extensionElements>
</bpmn2:message>
<bpmn2:interface id="Interface_1" implementationRef="MarkLogicEmailInterface" name="EmailInterface">
<bpmn2:operation id="_Operation_4" name="SendTestEmail">
<bpmn2:inMessageRef>Message_1</bpmn2:inMessageRef>
<bpmn2:outMessageRef>Message_2</bpmn2:outMessageRef>
</bpmn2:operation>
</bpmn2:interface>
<bpmn2:process id="EmailTest" name="Default Process" isExecutable="false">
<bpmn2:startEvent id="StartEvent_1" name="Start Event 1">
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
</bpmn2:startEvent>
<bpmn2:sequenceFlow id="SequenceFlow_1" name="Sequence Flow 1" sourceRef="StartEvent_1" targetRef="SendTask_1"/>
<bpmn2:endEvent id="EndEvent_1" name="End Event 1">
<bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
</bpmn2:endEvent>
<bpmn2:sendTask id="SendTask_1" name="Send Task 1" implementation="##unspecified" messageRef="Message_2" operationRef="_Operation_4">
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
<bpmn2:ioSpecification id="InputOutputSpecification_2">
<bpmn2:dataInput id="DataInput_1" itemSubjectRef="ItemDefinition_1" name="input1"/>
<bpmn2:inputSet id="InputSet_2">
<bpmn2:dataInputRefs>DataInput_1</bpmn2:dataInputRefs>
</bpmn2:inputSet>
<bpmn2:outputSet id="OutputSet_2"/>
</bpmn2:ioSpecification>
</bpmn2:sendTask>
<bpmn2:sequenceFlow id="SequenceFlow_2" sourceRef="SendTask_1" targetRef="EndEvent_1"/>
</bpmn2:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1" name="Default Process Diagram">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="EmailTest">
<bpmndi:BPMNShape id="BPMNShape_1" bpmnElement="StartEvent_1">
<dc:Bounds height="36.0" width="36.0" x="100.0" y="100.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_1" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="10.0" width="55.0" x="91.0" y="136.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_2" bpmnElement="EndEvent_1">
<dc:Bounds height="36.0" width="36.0" x="530.0" y="100.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_2" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="10.0" width="51.0" x="523.0" y="136.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_SendTask_1" bpmnElement="SendTask_1">
<dc:Bounds height="50.0" width="110.0" x="265.0" y="93.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_4" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="10.0" width="52.0" x="294.0" y="113.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="BPMNShape_1" targetElement="BPMNShape_SendTask_1">
<di:waypoint xsi:type="dc:Point" x="136.0" y="118.0"/>
<di:waypoint xsi:type="dc:Point" x="200.0" y="118.0"/>
<di:waypoint xsi:type="dc:Point" x="265.0" y="118.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_3" labelStyle="BPMNLabelStyle_1">
<dc:Bounds height="10.0" width="70.0" x="167.0" y="119.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="BPMNShape_SendTask_1" targetElement="BPMNShape_2">
<di:waypoint xsi:type="dc:Point" x="375.0" y="118.0"/>
<di:waypoint xsi:type="dc:Point" x="452.0" y="118.0"/>
<di:waypoint xsi:type="dc:Point" x="530.0" y="118.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_5" labelStyle="BPMNLabelStyle_1"/>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
<bpmndi:BPMNLabelStyle id="BPMNLabelStyle_1">
<dc:Font name="arial" size="9.0"/>
</bpmndi:BPMNLabelStyle>
</bpmndi:BPMNDiagram>
</bpmn2:definitions>
100 changes: 100 additions & 0 deletions data/examples/bpmn2/jBPMExample.bpmn2
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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:tns="http://www.jboss.org/drools" xmlns="http://www.jboss.org/drools" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd http://www.jboss.org/drools drools.xsd http://www.bpsim.org/schemas/1.0 bpsim.xsd" id="Definition" expressionLanguage="http://www.mvel.org/2.0" targetNamespace="http://www.jboss.org/drools" typeLanguage="http://www.java.com/javaTypes">
<bpmn2:process id="defaultPackage.jBPMExample" tns:version="1" tns:packageName="defaultPackage" tns:adHoc="false" name="jBPMExample" isExecutable="true" processType="Private">
<bpmn2:startEvent id="StartEvent_1" name="StartProcess">
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
</bpmn2:startEvent>
<bpmn2:task id="Task_1" name="Task B">
<bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
</bpmn2:task>
<bpmn2:task id="Task_2" name="Task C">
<bpmn2:incoming>SequenceFlow_3</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing>
</bpmn2:task>
<bpmn2:task id="Task_3" name="Task D">
<bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
</bpmn2:task>
<bpmn2:inclusiveGateway id="InclusiveGateway_1" name="" gatewayDirection="Diverging">
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
<bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
</bpmn2:inclusiveGateway>
<bpmn2:inclusiveGateway id="InclusiveGateway_2" name="" gatewayDirection="Converging">
<bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
<bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
</bpmn2:inclusiveGateway>
<bpmn2:sequenceFlow id="SequenceFlow_1" tns:priority="1" sourceRef="StartEvent_1" targetRef="InclusiveGateway_1"/>
<bpmn2:sequenceFlow id="SequenceFlow_2" tns:priority="1" sourceRef="InclusiveGateway_1" targetRef="Task_1"/>
<bpmn2:sequenceFlow id="SequenceFlow_3" tns:priority="1" sourceRef="InclusiveGateway_1" targetRef="Task_2"/>
<bpmn2:sequenceFlow id="SequenceFlow_4" tns:priority="1" sourceRef="Task_1" targetRef="InclusiveGateway_2"/>
<bpmn2:sequenceFlow id="SequenceFlow_5" tns:priority="1" sourceRef="Task_2" targetRef="InclusiveGateway_2"/>
<bpmn2:sequenceFlow id="SequenceFlow_6" tns:priority="1" sourceRef="InclusiveGateway_2" targetRef="Task_3"/>
<bpmn2:serviceTask id="ServiceTask_1" name="Service Task 1"/>
<bpmn2:callActivity id="CallActivity_1" tns:waitForCompletion="true" tns:independent="false" name="Call Activity 1"/>
<bpmn2:businessRuleTask id="BusinessRuleTask_1" tns:ruleFlowGroup="" name="Business Rule Task 1"/>
</bpmn2:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_Process_1" bpmnElement="defaultPackage.jBPMExample">
<bpmndi:BPMNShape id="BPMNShape_StartEvent_1" bpmnElement="StartEvent_1">
<dc:Bounds height="36.0" width="36.0" x="80.0" y="200.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Task_1" bpmnElement="Task_1">
<dc:Bounds height="50.0" width="110.0" x="595.0" y="185.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Task_2" bpmnElement="Task_2">
<dc:Bounds height="50.0" width="110.0" x="595.0" y="385.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_Task_3" bpmnElement="Task_3">
<dc:Bounds height="50.0" width="110.0" x="795.0" y="285.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_InclusiveGateway_1" bpmnElement="InclusiveGateway_1">
<dc:Bounds height="50.0" width="50.0" x="525.0" y="285.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_InclusiveGateway_2" bpmnElement="InclusiveGateway_2">
<dc:Bounds height="50.0" width="50.0" x="725.0" y="285.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_ServiceTask_1" bpmnElement="ServiceTask_1">
<dc:Bounds height="50.0" width="110.0" x="595.0" y="85.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_CallActivity_1" bpmnElement="CallActivity_1" isExpanded="true">
<dc:Bounds height="50.0" width="110.0" x="295.0" y="155.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_BusinessRuleTask_1" bpmnElement="BusinessRuleTask_1">
<dc:Bounds height="50.0" width="110.0" x="415.0" y="95.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="BPMNShape_StartEvent_1" targetElement="BPMNShape_InclusiveGateway_1">
<di:waypoint xsi:type="dc:Point" x="98.0" y="236.0"/>
<di:waypoint xsi:type="dc:Point" x="98.0" y="310.0"/>
<di:waypoint xsi:type="dc:Point" x="525.0" y="310.0"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="BPMNShape_InclusiveGateway_1" targetElement="BPMNShape_Task_1">
<di:waypoint xsi:type="dc:Point" x="550.0" y="285.0"/>
<di:waypoint xsi:type="dc:Point" x="550.0" y="210.0"/>
<di:waypoint xsi:type="dc:Point" x="595.0" y="210.0"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="SequenceFlow_3" sourceElement="BPMNShape_InclusiveGateway_1" targetElement="BPMNShape_Task_2">
<di:waypoint xsi:type="dc:Point" x="550.0" y="336.0"/>
<di:waypoint xsi:type="dc:Point" x="550.0" y="410.0"/>
<di:waypoint xsi:type="dc:Point" x="595.0" y="410.0"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="BPMNShape_Task_1" targetElement="BPMNShape_InclusiveGateway_2">
<di:waypoint xsi:type="dc:Point" x="705.0" y="210.0"/>
<di:waypoint xsi:type="dc:Point" x="750.0" y="210.0"/>
<di:waypoint xsi:type="dc:Point" x="750.0" y="285.0"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="BPMNShape_Task_2" targetElement="BPMNShape_InclusiveGateway_2">
<di:waypoint xsi:type="dc:Point" x="705.0" y="410.0"/>
<di:waypoint xsi:type="dc:Point" x="750.0" y="410.0"/>
<di:waypoint xsi:type="dc:Point" x="750.0" y="336.0"/>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="BPMNShape_InclusiveGateway_2" targetElement="BPMNShape_Task_3">
<di:waypoint xsi:type="dc:Point" x="776.0" y="310.0"/>
<di:waypoint xsi:type="dc:Point" x="784.0" y="310.0"/>
<di:waypoint xsi:type="dc:Point" x="784.0" y="310.0"/>
<di:waypoint xsi:type="dc:Point" x="795.0" y="310.0"/>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn2:definitions>
64 changes: 64 additions & 0 deletions data/examples/bpmn2/np1.bpmn2
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn2:definitions
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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:tns="http://marklogic.com/workflow"
xmlns:ext="http://org.eclipse.bpmn2/ext"
xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd "
id="Definition"
targetNamespace="http://marklogic.com/workflow">

<bpmn2:itemDefinition id="ItemDefinition_1" isCollection="false" structureRef="xs:string"/>
<bpmn2:message id="Message_1" itemRef="ItemDefinition_1" name="BlankMessage">
<bpmn2:extensionElements>
<ext:style/>
</bpmn2:extensionElements>
</bpmn2:message>
<bpmn2:message id="Message_2" itemRef="ItemDefinition_1" name="TestEmail">
<bpmn2:extensionElements>
<ext:style/>
</bpmn2:extensionElements>
</bpmn2:message>
<bpmn2:interface id="Interface_1" implementationRef="MarkLogicEmailInterface" name="EmailInterface">
<bpmn2:operation id="_Operation_4" name="SendTestEmail">
<bpmn2:inMessageRef>Message_1</bpmn2:inMessageRef>
<bpmn2:outMessageRef>Message_2</bpmn2:outMessageRef>
</bpmn2:operation>
</bpmn2:interface>
<bpmn2:process processType="Public" isExecutable="true" id="np1" name="np1" >
<bpmn2:startEvent id="StartEvent_1" name="StartEvent_1">
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
</bpmn2:startEvent>
<bpmn2:endEvent id="EndEvent_1" name="End Event 1">
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
</bpmn2:endEvent>
<bpmn2:sequenceFlow id="SequenceFlow_1" sourceRef="StartEvent_1" targetRef="EndEvent_1"/>
</bpmn2:process>

<bpmndi:BPMNDiagram>
<bpmndi:BPMNPlane id="BPMNPlane_Process_1" bpmnElement="np1">
<bpmndi:BPMNShape id="BPMNShape_StartEvent_1" bpmnElement="StartEvent_1">
<dc:Bounds height="0.0" width="0.0" x="45.0" y="45.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_1">
<dc:Bounds height="10.0" width="54.0" x="36.0" y="81.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BPMNShape_EndEvent_1" bpmnElement="EndEvent_1">
<dc:Bounds height="36.0" width="36.0" x="370.0" y="45.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_2">
<dc:Bounds height="10.0" width="51.0" x="363.0" y="81.0"/>
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="BPMNShape_StartEvent_1" targetElement="BPMNShape_EndEvent_1">
<di:waypoint xsi:type="dc:Point" x="81.0" y="63.0"/>
<di:waypoint xsi:type="dc:Point" x="225.0" y="63.0"/>
<di:waypoint xsi:type="dc:Point" x="370.0" y="63.0"/>
<bpmndi:BPMNLabel id="BPMNLabel_3"/>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>

</bpmn2:definitions>
3 changes: 2 additions & 1 deletion data/restapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
{"name": "processinbox", "methods": ["GET"]},
{"name": "processqueue", "methods": ["GET"]},
{"name": "processmodel", "methods": ["GET","POST","PUT"]},
{"name": "processsubscription", "methods": ["PUT"]}
{"name": "processsubscription", "methods": ["PUT"]},
{"name": "processsearch", "methods": ["PUT"]}
],
"transforms": [],
"triggers": [
Expand Down
Loading

0 comments on commit 245fa5c

Please sign in to comment.