summaryrefslogtreecommitdiffstats
path: root/test/samples/uscxml
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-07-23 09:25:44 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-07-23 09:25:44 (GMT)
commiteb99c62e3d00f4ea5271f6dfc6401e3fcd5a5b90 (patch)
treec57585368b5855b7f71c5383d045d428a249ef8b /test/samples/uscxml
parent122285d16fd8ac9855c92519d48919bea36791b4 (diff)
downloaduscxml-eb99c62e3d00f4ea5271f6dfc6401e3fcd5a5b90.zip
uscxml-eb99c62e3d00f4ea5271f6dfc6401e3fcd5a5b90.tar.gz
uscxml-eb99c62e3d00f4ea5271f6dfc6401e3fcd5a5b90.tar.bz2
Fixed setting intial config
Diffstat (limited to 'test/samples/uscxml')
-rw-r--r--test/samples/uscxml/test-initial-config.scxml58
1 files changed, 58 insertions, 0 deletions
diff --git a/test/samples/uscxml/test-initial-config.scxml b/test/samples/uscxml/test-initial-config.scxml
new file mode 100644
index 0000000..cac0b8a
--- /dev/null
+++ b/test/samples/uscxml/test-initial-config.scxml
@@ -0,0 +1,58 @@
+<scxml name="CuCo" version="0.9" xmlns="http://www.w3.org/2005/07/scxml">
+ <parallel id="MAIN-PARALLEL">
+ <state id="MAIN_STATE">
+ <state id="1_PROPOSAL" initial="1_START">
+ <state id="1_START">
+ <onentry>
+ </onentry>
+ <transition event="event.role.system" target="SYSTEM_1.1_BEGIN"></transition>
+ <transition event="event.role.coordinator" target="COORDINATOR_1.1_BEGIN"></transition>
+ </state>
+ <state id="SYSTEM_1.1_ANNOUNCEMENT" initial="SYSTEM_1.1_BEGIN">
+ <state id="SYSTEM_1.1.2_REMINDER_COORDINATOR-PREPARE-INFO">
+ <onentry>
+ </onentry>
+ </state>
+ <state id="SYSTEM_1.1_BEGIN">
+ <onentry>
+
+ </onentry>
+ <transition cond="DATETIME_NOW == DATETIME_EVENT$REMINDER$1_PROPOSAL$ANNOUNCEMENT" event="event.datetime.reminder-2week-coordinator-prepare-info" target="SYSTEM_1.1.2_REMINDER_COORDINATOR-PREPARE-INFO"></transition>
+ </state>
+ </state>
+ <state id="COORDINATOR_1.1_ANNOUNCEMENT" initial="COORDINATOR_1.1_BEGIN">
+ <state id="COORDINATOR_1.1_BEGIN">
+ <onentry>
+
+ </onentry>
+ <transition event="FLAG_REMINDER1 == TRUE" target="COORDINATOR_1.1.1_ANNOUNCEMENT-CONTENTS-VALIDATE"></transition>
+ </state>
+ <state id="COORDINATOR_1.1.1_ANNOUNCEMENT-CONTENTS-VALIDATE"></state>
+ </state>
+ </state>
+ </state>
+ <state id="finish_shortcut">
+ <transition event="event.finish" target="finished"></transition>
+ </state>
+ <state id="ADMINISTRATIVE_TASKS">
+ <state id="ADMINISTRATIVE_NON-HR-MANAGEMENT">
+ <onentry>
+
+ </onentry>
+ <transition event="event.administrative.next" target="ADMINISTRATIVE_NON-HR-MANAGEMENT_2"></transition>
+ </state>
+ <state id="ADMINISTRATIVE_NON-HR-MANAGEMENT_2">
+ <onentry>
+
+ </onentry>
+ </state>
+ </state>
+ <state id="COORDINATOR_TASKS">
+ <state id="COORDINATOR_1"></state>
+ </state>
+ <state id="HR-MANAGER_TASKS">
+ <state id="HR-MANAGER_MANAGE-HR"></state>
+ </state>
+ </parallel>
+ <final id="finished"></final>
+</scxml>