summaryrefslogtreecommitdiff
path: root/src/main/resources/boot/SM/Default.xml
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2013-07-20 11:55:01 +0200
committerAndrew Branson <andrew.branson@cern.ch>2013-09-16 12:39:15 +0200
commit217204c44c4a09b34610701de3afe7c6734dcc39 (patch)
treeef24ddc673d768244b220e8954fcfe5f08608525 /src/main/resources/boot/SM/Default.xml
parentbce2990a1434bf78e85adbfc66cec1a402342f3c (diff)
StateMachine mapfile
Diffstat (limited to 'src/main/resources/boot/SM/Default.xml')
-rw-r--r--src/main/resources/boot/SM/Default.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/boot/SM/Default.xml b/src/main/resources/boot/SM/Default.xml
new file mode 100644
index 0000000..237506e
--- /dev/null
+++ b/src/main/resources/boot/SM/Default.xml
@@ -0,0 +1,17 @@
+<StateMachine initialState="0">
+ <State id="0" name="Waiting"/>
+ <State id="1" name="Finished" proceeds="true"/>
+ <State id="2" name="Suspended"/>
+
+ <Transition id="0" name="Done" origin="0" terminus="1">
+ <Outcome name="${SchemaType}" version="${SchemaVersion}"/>
+ <Script name="${ScriptName}" version="${ScriptVersion}"/>
+ </Transition>
+ <Transition id="1" name="Suspend" origin="0" terminus="2">
+ <Outcome name="Errors" version="0"/>
+ </Transition>
+ <Transition id="2" name="Retry" origin="2" terminus="0" roleOverride="Admin"/>
+</StateMachine>
+
+
+