summaryrefslogtreecommitdiff
path: root/src/main/resources/boot/SM/Default.xml
diff options
context:
space:
mode:
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>
+
+
+