diff options
author | ChrisC <cc697w@intl.att.com> | 2017-06-21 02:38:57 -0700 |
---|---|---|
committer | ChrisC <cc697w@intl.att.com> | 2017-06-21 02:58:20 -0700 |
commit | 5e9feb2a8e360b82dc2b6e4145e0fd847d2924ce (patch) | |
tree | 0c9e78d462252e5c41c977476c9dee26b1b0069b /src/main/resources/bpmn/dish.dmn | |
parent | 4d8ae6fe89a9ed6cd9a64c3276d2dc5a48bbcc34 (diff) |
[CLAMP-1] Initial ONAP CLAMP seed code commit
Change-Id: I2e8070a590618a06070f393d7b2c011029af5e8a
Signed-off-by: ChrisC <cc697w@intl.att.com>
Diffstat (limited to 'src/main/resources/bpmn/dish.dmn')
-rw-r--r-- | src/main/resources/bpmn/dish.dmn | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/main/resources/bpmn/dish.dmn b/src/main/resources/bpmn/dish.dmn new file mode 100644 index 000000000..473a07ae5 --- /dev/null +++ b/src/main/resources/bpmn/dish.dmn @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn11.xsd" id="definitions" name="definitions" namespace="http://camunda.org/schema/1.0/dmn"> + <decision id="simpleDishDecisionTable" name="SimpleDishDecisionTable"> + <decisionTable id="decisionTable"> + <input id="input1" label="Season"> + <inputExpression id="inputExpression1" typeRef="string"> <text>season</text> +</inputExpression> + </input> + <output id="output1" label="Dish" name="desiredDish" typeRef="string" /> + <rule id="row-72464069-3"> + <inputEntry id="UnaryTests_0zmcdq6"> <text><![CDATA["Fall"]]></text> +</inputEntry> + <outputEntry id="LiteralExpression_1ehb89n"> <text><![CDATA["Pad Thai"]]></text> +</outputEntry> + </rule> + <rule id="row-72464069-4"> + <inputEntry id="UnaryTests_0g5512k"> <text><![CDATA["Winter"]]></text> +</inputEntry> + <outputEntry id="LiteralExpression_0v3t89p"> <text><![CDATA["Lamb Jalfrazie, Mutter Paneer, and Nan"]]></text> +</outputEntry> + </rule> + <rule id="row-72464069-5"> + <inputEntry id="UnaryTests_0582crg"> <text><![CDATA["Spring"]]></text> +</inputEntry> + <outputEntry id="LiteralExpression_100afca"> <text><![CDATA["Chicken Moghlai, Baingan Bhartha, and Nan"]]></text> +</outputEntry> + </rule> + <rule id="row-72464069-6"> + <inputEntry id="UnaryTests_0fha0sl"> <text><![CDATA["Summer"]]></text> +</inputEntry> + <outputEntry id="LiteralExpression_06dk8fw"> <text><![CDATA["Satay and Laab"]]></text> +</outputEntry> + </rule> + </decisionTable> + </decision> +</definitions> |