fqn names of events and states
This commit is contained in:
@@ -34,7 +34,7 @@ public class GoldenUpdater {
|
||||
System.out.println("Updating golden files for: " + scenario.name());
|
||||
Path tempDir = Files.createTempDirectory("golden-update-");
|
||||
try {
|
||||
exportService.runExporter(scenario.inputPath(), tempDir, null, true);
|
||||
exportService.runExporter(scenario.inputPath(), tempDir, List.of("puml", "dot", "scxml", "json"), true);
|
||||
|
||||
List<Path> generatedDirs;
|
||||
try (var stream = Files.list(tempDir)) {
|
||||
|
||||
@@ -47,9 +47,7 @@ class AstTransitionParserTest {
|
||||
.isEqualTo(TransitionType.EXTERNAL);
|
||||
assertThat(transition.getSourceStates()).extracting(State::toString).containsExactly("CREATED");
|
||||
assertThat(transition.getTargetStates()).extracting(State::toString).containsExactly("PAID");
|
||||
assertThat(transition)
|
||||
.extracting(Transition::getEvent)
|
||||
.isEqualTo("PAY");
|
||||
assertThat(transition.getEvent().toString()).isEqualTo("PAY");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -211,8 +209,8 @@ class AstTransitionParserTest {
|
||||
List<Transition> transitions = AstTransitionParser.parseTransitions(method, context);
|
||||
|
||||
assertThat(transitions).hasSize(2);
|
||||
assertThat(transitions.get(0).getEvent()).isEqualTo("E1");
|
||||
assertThat(transitions.get(1).getEvent()).isEqualTo("E2");
|
||||
assertThat(transitions.get(0).getEvent().toString()).isEqualTo("E1");
|
||||
assertThat(transitions.get(1).getEvent().toString()).isEqualTo("E2");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
@@ -58,8 +58,8 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(childTd);
|
||||
|
||||
assertThat(transitions).hasSize(2);
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("BASE_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("CHILD_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("BASE_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("CHILD_E1"));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -93,7 +93,7 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(childTd);
|
||||
|
||||
assertThat(transitions).hasSize(1);
|
||||
assertThat(transitions.get(0).getEvent()).isEqualTo("OVERRIDDEN_E1");
|
||||
assertThat(transitions.get(0).getEvent().toString()).isEqualTo("OVERRIDDEN_E1");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -119,7 +119,7 @@ class StateMachineAggregatorTest {
|
||||
assertThat(transitions).hasSize(1);
|
||||
assertThat(transitions.get(0).getSourceStates()).extracting(State::toString).containsExactly("START");
|
||||
assertThat(transitions.get(0).getTargetStates()).extracting(State::toString).containsExactly("END");
|
||||
assertThat(transitions.get(0).getEvent()).isEqualTo("GO");
|
||||
assertThat(transitions.get(0).getEvent().toString()).isEqualTo("GO");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -143,8 +143,8 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(td);
|
||||
|
||||
assertThat(transitions).hasSize(2);
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E2"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E2"));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -241,9 +241,9 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(childTd);
|
||||
|
||||
assertThat(transitions).hasSize(3);
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("GP_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("P_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("C_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("GP_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("P_E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("C_E1"));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -267,8 +267,8 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(td);
|
||||
|
||||
assertThat(transitions).hasSize(2);
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E2"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E2"));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -381,7 +381,7 @@ class StateMachineAggregatorTest {
|
||||
// It might not find ExternalTransitions.addCommon unless it's static or we handle imports.
|
||||
// Let's see if it works or if we need to improve the aggregator.
|
||||
assertThat(transitions).hasSize(1);
|
||||
assertThat(transitions.get(0).getEvent()).isEqualTo("EXT_E1");
|
||||
assertThat(transitions.get(0).getEvent().toString()).isEqualTo("EXT_E1");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -408,8 +408,8 @@ class StateMachineAggregatorTest {
|
||||
|
||||
// Should not crash and should find both transitions
|
||||
assertThat(transitions).hasSize(2);
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E2"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E2"));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -434,7 +434,7 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(td);
|
||||
|
||||
assertThat(transitions).hasSize(1);
|
||||
assertThat(transitions.get(0).getEvent()).isEqualTo("TRY_E1");
|
||||
assertThat(transitions.get(0).getEvent().toString()).isEqualTo("TRY_E1");
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -536,8 +536,8 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(td);
|
||||
|
||||
assertThat(transitions).hasSize(2);
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().equals("E2"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E1"));
|
||||
assertThat(transitions).anyMatch(t -> t.getEvent().toString().equals("E2"));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -585,7 +585,7 @@ class StateMachineAggregatorTest {
|
||||
List<Transition> transitions = aggregator.aggregateTransitions(td);
|
||||
|
||||
assertThat(transitions).hasSize(1);
|
||||
assertThat(transitions.get(0).getEvent()).isEqualTo("E1");
|
||||
assertThat(transitions.get(0).getEvent().toString()).isEqualTo("E1");
|
||||
}
|
||||
|
||||
private void writeClass(String name, String source) throws IOException {
|
||||
|
||||
@@ -20,7 +20,7 @@ class JsonExporterTest {
|
||||
transition.setType(TransitionType.EXTERNAL);
|
||||
transition.setSourceStates(List.of(State.of("S1")));
|
||||
transition.setTargetStates(List.of(State.of("S2")));
|
||||
transition.setEvent("E1");
|
||||
transition.setEvent(click.kamil.springstatemachineexporter.model.Event.of("E1"));
|
||||
|
||||
AnalysisResult result = AnalysisResult.builder()
|
||||
.name("TestSM")
|
||||
@@ -33,7 +33,7 @@ class JsonExporterTest {
|
||||
|
||||
assertThat(json)
|
||||
.contains("\"name\" : \"TestSM\"")
|
||||
.contains("\"event\" : \"E1\"")
|
||||
.contains("\"rawName\" : \"E1\"")
|
||||
.contains("\"rawName\" : \"S1\"")
|
||||
.contains("\"rawName\" : \"S2\"");
|
||||
}
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
package click.kamil.springstatemachineexporter.exporter;
|
||||
|
||||
import click.kamil.springstatemachineexporter.analysis.model.AnalysisResult;
|
||||
import click.kamil.springstatemachineexporter.model.Event;
|
||||
import click.kamil.springstatemachineexporter.model.State;
|
||||
import click.kamil.springstatemachineexporter.model.Transition;
|
||||
import click.kamil.springstatemachineexporter.model.TransitionType;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
class PlantUmlTest {
|
||||
|
||||
@Test
|
||||
void shouldFormatTransitionsWithDifferentEnumFormats() {
|
||||
// Given
|
||||
PlantUml exporter = new PlantUml();
|
||||
Transition transition = new Transition();
|
||||
transition.setType(TransitionType.EXTERNAL);
|
||||
transition.setSourceStates(List.of(State.of("States.S1", "com.example.States.S1")));
|
||||
transition.setTargetStates(List.of(State.of("States.S2", "com.example.States.S2")));
|
||||
transition.setEvent(Event.of("Events.E1", "com.example.Events.E1"));
|
||||
|
||||
AnalysisResult result = AnalysisResult.builder()
|
||||
.name("TestSM")
|
||||
.transitions(List.of(transition))
|
||||
.startStates(Set.of("States.S1"))
|
||||
.endStates(Set.of("States.S2"))
|
||||
.build();
|
||||
|
||||
// Test FN (Full Name - Default)
|
||||
ExportOptions optionsFn = ExportOptions.builder()
|
||||
.stateFormat(EnumFormat.fn)
|
||||
.eventFormat(EnumFormat.fn)
|
||||
.build();
|
||||
String pumlFn = exporter.export(result, optionsFn);
|
||||
assertThat(pumlFn)
|
||||
.contains("States.S1 -[#")
|
||||
.contains("]-> States.S2")
|
||||
.contains(" : Events.E1");
|
||||
|
||||
// Test FQN (Fully Qualified Name)
|
||||
ExportOptions optionsFqn = ExportOptions.builder()
|
||||
.stateFormat(EnumFormat.fqn)
|
||||
.eventFormat(EnumFormat.fqn)
|
||||
.build();
|
||||
String pumlFqn = exporter.export(result, optionsFqn);
|
||||
assertThat(pumlFqn)
|
||||
.contains("com.example.States.S1 -[#")
|
||||
.contains("]-> com.example.States.S2")
|
||||
.contains(" : com.example.Events.E1");
|
||||
|
||||
// Test SN (Short Name)
|
||||
ExportOptions optionsSn = ExportOptions.builder()
|
||||
.stateFormat(EnumFormat.sn)
|
||||
.eventFormat(EnumFormat.sn)
|
||||
.build();
|
||||
String pumlSn = exporter.export(result, optionsSn);
|
||||
assertThat(pumlSn)
|
||||
.contains("S1 -[#")
|
||||
.contains("]-> S2")
|
||||
.contains(" : E1");
|
||||
}
|
||||
}
|
||||
@@ -27,7 +27,7 @@ public class DeferredProfileResolutionTest {
|
||||
assertThat(result.getStartStates()).containsExactly("START_RESOLVED");
|
||||
|
||||
Transition t = result.getTransitions().get(0);
|
||||
assertThat(t.getEvent()).isEqualTo("RESOLVED_EVENT");
|
||||
assertThat(t.getEvent().fullIdentifier()).isEqualTo("RESOLVED_EVENT");
|
||||
assertThat(t.getSourceStates().get(0).fullIdentifier()).isEqualTo("START_RESOLVED");
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class DeferredProfileResolutionTest {
|
||||
State s2 = State.of("END", "END");
|
||||
|
||||
Transition t1 = new Transition();
|
||||
t1.setEvent("${app.event.name:RESOLVED_EVENT}");
|
||||
t1.setEvent(click.kamil.springstatemachineexporter.model.Event.of("${app.event.name:RESOLVED_EVENT}"));
|
||||
t1.setSourceStates(List.of(s1));
|
||||
t1.setTargetStates(List.of(s2));
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ class JsonImportServiceTest {
|
||||
"type" : "EXTERNAL",
|
||||
"sourceStates" : [ { "rawName" : "S1", "fullIdentifier" : "S1" } ],
|
||||
"targetStates" : [ { "rawName" : "S2", "fullIdentifier" : "S2" } ],
|
||||
"event" : "E1"
|
||||
"event" : { "rawName" : "E1", "fullIdentifier" : "E1" }
|
||||
} ],
|
||||
"startStates" : [ "S1" ],
|
||||
"endStates" : [ "S2" ]
|
||||
@@ -36,7 +36,7 @@ class JsonImportServiceTest {
|
||||
|
||||
assertThat(model.getName()).isEqualTo("ImportedSM");
|
||||
assertThat(model.getTransitions()).hasSize(1);
|
||||
assertThat(model.getTransitions().get(0).getEvent()).isEqualTo("E1");
|
||||
assertThat(model.getTransitions().get(0).getEvent().rawName()).isEqualTo("E1");
|
||||
assertThat(model.getStartStates()).containsExactly("S1");
|
||||
assertThat(model.getEndStates()).containsExactly("S2");
|
||||
}
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.STATE11",
|
||||
"fullIdentifier" : "States.STATE11"
|
||||
} ],
|
||||
"event" : "Events.EVENT10",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT10",
|
||||
"fullIdentifier" : "Events.EVENT10"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.STATE12",
|
||||
"fullIdentifier" : "States.STATE12"
|
||||
} ],
|
||||
"event" : "Events.EVENT11",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT11",
|
||||
"fullIdentifier" : "Events.EVENT11"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.STATE13",
|
||||
"fullIdentifier" : "States.STATE13"
|
||||
} ],
|
||||
"event" : "Events.EVENT12",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT12",
|
||||
"fullIdentifier" : "Events.EVENT12"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.STATE14",
|
||||
"fullIdentifier" : "States.STATE14"
|
||||
} ],
|
||||
"event" : "Events.EVENT13",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT13",
|
||||
"fullIdentifier" : "Events.EVENT13"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.STATE15",
|
||||
"fullIdentifier" : "States.STATE15"
|
||||
} ],
|
||||
"event" : "Events.EVENT14",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT14",
|
||||
"fullIdentifier" : "Events.EVENT14"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATE16",
|
||||
"fullIdentifier" : "States.STATE16"
|
||||
} ],
|
||||
"event" : "Events.EVENT15",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT15",
|
||||
"fullIdentifier" : "Events.EVENT15"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -328,7 +328,10 @@
|
||||
"rawName" : "\"CHECK_AVAILABILITY\"",
|
||||
"fullIdentifier" : "CHECK_AVAILABILITY"
|
||||
} ],
|
||||
"event" : "PLACE_ORDER",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.PLACE",
|
||||
"fullIdentifier" : "PLACE_ORDER"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -377,7 +380,10 @@
|
||||
"rawName" : "\"PAID\"",
|
||||
"fullIdentifier" : "PAID"
|
||||
} ],
|
||||
"event" : "PAY_ORDER",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.PAY",
|
||||
"fullIdentifier" : "PAY_ORDER"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -391,7 +397,10 @@
|
||||
"rawName" : "\"SHIPPED\"",
|
||||
"fullIdentifier" : "SHIPPED"
|
||||
} ],
|
||||
"event" : "SHIP_ORDER",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.SHIP",
|
||||
"fullIdentifier" : "SHIP_ORDER"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -405,7 +414,10 @@
|
||||
"rawName" : "\"DELIVERED\"",
|
||||
"fullIdentifier" : "DELIVERED"
|
||||
} ],
|
||||
"event" : "FINALIZE",
|
||||
"event" : {
|
||||
"rawName" : "\"FINALIZE\"",
|
||||
"fullIdentifier" : "FINALIZE"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -419,7 +431,10 @@
|
||||
"rawName" : "\"CANCELLED\"",
|
||||
"fullIdentifier" : "CANCELLED"
|
||||
} ],
|
||||
"event" : "CANCEL_ORDER",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.CANCEL",
|
||||
"fullIdentifier" : "CANCEL_ORDER"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -433,7 +448,10 @@
|
||||
"rawName" : "\"RETURNED\"",
|
||||
"fullIdentifier" : "RETURNED"
|
||||
} ],
|
||||
"event" : "RETURN_ORDER",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.RETURN",
|
||||
"fullIdentifier" : "RETURN_ORDER"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -322,7 +322,10 @@
|
||||
"rawName" : "\"PROCESSING\"",
|
||||
"fullIdentifier" : "PROCESSING"
|
||||
} ],
|
||||
"event" : "SUBMIT_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "MyEvents.SUBMIT",
|
||||
"fullIdentifier" : "SUBMIT_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -336,7 +339,10 @@
|
||||
"rawName" : "\"COMPLETED\"",
|
||||
"fullIdentifier" : "COMPLETED"
|
||||
} ],
|
||||
"event" : "FINISH",
|
||||
"event" : {
|
||||
"rawName" : "\"FINISH\"",
|
||||
"fullIdentifier" : "FINISH"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -350,7 +356,10 @@
|
||||
"rawName" : "\"CANCELLED\"",
|
||||
"fullIdentifier" : "CANCELLED"
|
||||
} ],
|
||||
"event" : "CANCEL_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "MyEvents.CANCEL",
|
||||
"fullIdentifier" : "CANCEL_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -364,7 +373,10 @@
|
||||
"rawName" : "\"PROCESSING\"",
|
||||
"fullIdentifier" : "PROCESSING"
|
||||
} ],
|
||||
"event" : "REACTIVE_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "\"REACTIVE_EVENT\"",
|
||||
"fullIdentifier" : "REACTIVE_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -378,7 +390,10 @@
|
||||
"rawName" : "\"START\"",
|
||||
"fullIdentifier" : "START"
|
||||
} ],
|
||||
"event" : "AUDIT_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "\"AUDIT_EVENT\"",
|
||||
"fullIdentifier" : "AUDIT_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -392,7 +407,10 @@
|
||||
"rawName" : "\"PROCESSING\"",
|
||||
"fullIdentifier" : "PROCESSING"
|
||||
} ],
|
||||
"event" : "EXTERNAL_TRIGGER",
|
||||
"event" : {
|
||||
"rawName" : "\"EXTERNAL_TRIGGER\"",
|
||||
"fullIdentifier" : "EXTERNAL_TRIGGER"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -322,7 +322,10 @@
|
||||
"rawName" : "\"PROCESSING\"",
|
||||
"fullIdentifier" : "PROCESSING"
|
||||
} ],
|
||||
"event" : "SUBMIT_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "MyEvents.SUBMIT",
|
||||
"fullIdentifier" : "SUBMIT_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -336,7 +339,10 @@
|
||||
"rawName" : "\"COMPLETED\"",
|
||||
"fullIdentifier" : "COMPLETED"
|
||||
} ],
|
||||
"event" : "FINISH",
|
||||
"event" : {
|
||||
"rawName" : "\"FINISH\"",
|
||||
"fullIdentifier" : "FINISH"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -350,7 +356,10 @@
|
||||
"rawName" : "\"CANCELLED\"",
|
||||
"fullIdentifier" : "CANCELLED"
|
||||
} ],
|
||||
"event" : "CANCEL_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "MyEvents.CANCEL",
|
||||
"fullIdentifier" : "CANCEL_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -364,7 +373,10 @@
|
||||
"rawName" : "\"PROCESSING\"",
|
||||
"fullIdentifier" : "PROCESSING"
|
||||
} ],
|
||||
"event" : "REACTIVE_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "\"REACTIVE_EVENT\"",
|
||||
"fullIdentifier" : "REACTIVE_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -378,7 +390,10 @@
|
||||
"rawName" : "\"START\"",
|
||||
"fullIdentifier" : "START"
|
||||
} ],
|
||||
"event" : "AUDIT_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "\"AUDIT_EVENT\"",
|
||||
"fullIdentifier" : "AUDIT_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -392,7 +407,10 @@
|
||||
"rawName" : "\"PROCESSING\"",
|
||||
"fullIdentifier" : "PROCESSING"
|
||||
} ],
|
||||
"event" : "EXTERNAL_TRIGGER",
|
||||
"event" : {
|
||||
"rawName" : "\"EXTERNAL_TRIGGER\"",
|
||||
"fullIdentifier" : "EXTERNAL_TRIGGER"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.STATE11",
|
||||
"fullIdentifier" : "States.STATE11"
|
||||
} ],
|
||||
"event" : "Events.EVENT10",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT10",
|
||||
"fullIdentifier" : "Events.EVENT10"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.STATE12",
|
||||
"fullIdentifier" : "States.STATE12"
|
||||
} ],
|
||||
"event" : "Events.EVENT11",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT11",
|
||||
"fullIdentifier" : "Events.EVENT11"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.STATE13",
|
||||
"fullIdentifier" : "States.STATE13"
|
||||
} ],
|
||||
"event" : "Events.EVENT12",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT12",
|
||||
"fullIdentifier" : "Events.EVENT12"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.STATE14",
|
||||
"fullIdentifier" : "States.STATE14"
|
||||
} ],
|
||||
"event" : "Events.EVENT13",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT13",
|
||||
"fullIdentifier" : "Events.EVENT13"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.STATE15",
|
||||
"fullIdentifier" : "States.STATE15"
|
||||
} ],
|
||||
"event" : "Events.EVENT14",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT14",
|
||||
"fullIdentifier" : "Events.EVENT14"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATE16",
|
||||
"fullIdentifier" : "States.STATE16"
|
||||
} ],
|
||||
"event" : "Events.EVENT15",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT15",
|
||||
"fullIdentifier" : "Events.EVENT15"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -232,7 +277,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -246,7 +294,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -260,7 +311,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -274,7 +328,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -288,7 +345,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -302,7 +362,10 @@
|
||||
"rawName" : "States.STATEY",
|
||||
"fullIdentifier" : "States.STATEY"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -764,7 +827,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_1",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_1"
|
||||
} ],
|
||||
"event" : "Events.EVENTX",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTX",
|
||||
"fullIdentifier" : "Events.EVENTX"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -813,7 +879,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_3",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_3"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -827,7 +896,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -841,7 +913,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.STATE11",
|
||||
"fullIdentifier" : "States.STATE11"
|
||||
} ],
|
||||
"event" : "Events.EVENT10",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT10",
|
||||
"fullIdentifier" : "Events.EVENT10"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.STATE12",
|
||||
"fullIdentifier" : "States.STATE12"
|
||||
} ],
|
||||
"event" : "Events.EVENT11",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT11",
|
||||
"fullIdentifier" : "Events.EVENT11"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.STATE13",
|
||||
"fullIdentifier" : "States.STATE13"
|
||||
} ],
|
||||
"event" : "Events.EVENT12",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT12",
|
||||
"fullIdentifier" : "Events.EVENT12"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.STATE14",
|
||||
"fullIdentifier" : "States.STATE14"
|
||||
} ],
|
||||
"event" : "Events.EVENT13",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT13",
|
||||
"fullIdentifier" : "Events.EVENT13"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.STATE15",
|
||||
"fullIdentifier" : "States.STATE15"
|
||||
} ],
|
||||
"event" : "Events.EVENT14",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT14",
|
||||
"fullIdentifier" : "Events.EVENT14"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATE16",
|
||||
"fullIdentifier" : "States.STATE16"
|
||||
} ],
|
||||
"event" : "Events.EVENT15",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT15",
|
||||
"fullIdentifier" : "Events.EVENT15"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -232,7 +277,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -246,7 +294,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -260,7 +311,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -274,7 +328,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -288,7 +345,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -302,7 +362,10 @@
|
||||
"rawName" : "States.STATEY",
|
||||
"fullIdentifier" : "States.STATEY"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -764,7 +827,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_1_1",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_1_1"
|
||||
} ],
|
||||
"event" : "Events.EVENT_1_1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_1_1",
|
||||
"fullIdentifier" : "Events.EVENT_1_1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -813,7 +879,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_1",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_1"
|
||||
} ],
|
||||
"event" : "Events.EVENT_1_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_1_2",
|
||||
"fullIdentifier" : "Events.EVENT_1_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -827,7 +896,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -841,7 +913,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -855,7 +930,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.FORK",
|
||||
"fullIdentifier" : "States.FORK"
|
||||
} ],
|
||||
"event" : "Events.TO_FORK",
|
||||
"event" : {
|
||||
"rawName" : "Events.TO_FORK",
|
||||
"fullIdentifier" : "Events.TO_FORK"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -53,7 +56,10 @@
|
||||
"rawName" : "States.REGION1_STATE2",
|
||||
"fullIdentifier" : "States.REGION1_STATE2"
|
||||
} ],
|
||||
"event" : "Events.R1_NEXT",
|
||||
"event" : {
|
||||
"rawName" : "Events.R1_NEXT",
|
||||
"fullIdentifier" : "Events.R1_NEXT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -67,7 +73,10 @@
|
||||
"rawName" : "States.REGION2_STATE2",
|
||||
"fullIdentifier" : "States.REGION2_STATE2"
|
||||
} ],
|
||||
"event" : "Events.R2_NEXT",
|
||||
"event" : {
|
||||
"rawName" : "Events.R2_NEXT",
|
||||
"fullIdentifier" : "Events.R2_NEXT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -98,7 +107,10 @@
|
||||
"rawName" : "States.END",
|
||||
"fullIdentifier" : "States.END"
|
||||
} ],
|
||||
"event" : "Events.TO_END",
|
||||
"event" : {
|
||||
"rawName" : "Events.TO_END",
|
||||
"fullIdentifier" : "Events.TO_END"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATEY",
|
||||
"fullIdentifier" : "States.STATEY"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -358,7 +403,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_2",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_2"
|
||||
} ],
|
||||
"event" : "Events.EVENT_1_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_1_2",
|
||||
"fullIdentifier" : "Events.EVENT_1_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -372,7 +420,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_3",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_3"
|
||||
} ],
|
||||
"event" : "Events.EVENT_1_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_1_2",
|
||||
"fullIdentifier" : "Events.EVENT_1_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -386,7 +437,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATEY",
|
||||
"fullIdentifier" : "States.STATEY"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -358,7 +403,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_1",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_1"
|
||||
} ],
|
||||
"event" : "Events.EVENT_1_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_1_2",
|
||||
"fullIdentifier" : "Events.EVENT_1_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -372,7 +420,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_2",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_2"
|
||||
} ],
|
||||
"event" : "Events.EVENT_1_3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_1_3",
|
||||
"fullIdentifier" : "Events.EVENT_1_3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -386,7 +437,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -400,7 +454,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -73,7 +73,10 @@
|
||||
"rawName" : "\"WORKING\"",
|
||||
"fullIdentifier" : "WORKING"
|
||||
} ],
|
||||
"event" : "INHERITED_SUBMIT",
|
||||
"event" : {
|
||||
"rawName" : "\"INHERITED_SUBMIT\"",
|
||||
"fullIdentifier" : "INHERITED_SUBMIT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "OrderStates.PAID",
|
||||
"fullIdentifier" : "OrderStates.PAID"
|
||||
} ],
|
||||
"event" : "OrderEvents.PAY",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.PAY",
|
||||
"fullIdentifier" : "OrderEvents.PAY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "OrderStates.FULFILLED",
|
||||
"fullIdentifier" : "OrderStates.FULFILLED"
|
||||
} ],
|
||||
"event" : "OrderEvents.FULFILL",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.FULFILL",
|
||||
"fullIdentifier" : "OrderEvents.FULFILL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "OrderStates.CANCELED",
|
||||
"fullIdentifier" : "OrderStates.CANCELED"
|
||||
} ],
|
||||
"event" : "OrderEvents.CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.CANCEL",
|
||||
"fullIdentifier" : "OrderEvents.CANCEL"
|
||||
},
|
||||
"guard" : {
|
||||
"expression" : "new Guard<OrderStates,OrderEvents>(){\n @Override public boolean evaluate( StateContext<OrderStates,OrderEvents> context){\n return false;\n }\n}\n",
|
||||
"isLambda" : true,
|
||||
@@ -71,7 +80,10 @@
|
||||
"rawName" : "OrderStates.CANCELED",
|
||||
"fullIdentifier" : "OrderStates.CANCELED"
|
||||
} ],
|
||||
"event" : "OrderEvents.CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.CANCEL",
|
||||
"fullIdentifier" : "OrderEvents.CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -82,7 +94,10 @@
|
||||
"fullIdentifier" : "OrderStates.SUBMITTED"
|
||||
} ],
|
||||
"targetStates" : [ ],
|
||||
"event" : "OrderEvents.ABCD",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.ABCD",
|
||||
"fullIdentifier" : "OrderEvents.ABCD"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -96,7 +111,10 @@
|
||||
"rawName" : "OrderStates.PAID1",
|
||||
"fullIdentifier" : "OrderStates.PAID1"
|
||||
} ],
|
||||
"event" : "OrderEvents.ABCD",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.ABCD",
|
||||
"fullIdentifier" : "OrderEvents.ABCD"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -212,7 +230,10 @@
|
||||
"fullIdentifier" : "OrderStates.PAID2"
|
||||
} ],
|
||||
"targetStates" : [ ],
|
||||
"event" : "OrderEvents.ABCD",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.ABCD",
|
||||
"fullIdentifier" : "OrderEvents.ABCD"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ {
|
||||
"expression" : "new Action<OrderStates,OrderEvents>(){\n @Override public void execute( StateContext<OrderStates,OrderEvents> context){\n }\n}\n",
|
||||
|
||||
@@ -120,7 +120,10 @@
|
||||
"rawName" : "\"BUSY\"",
|
||||
"fullIdentifier" : "BUSY"
|
||||
} ],
|
||||
"event" : "SUBMIT",
|
||||
"event" : {
|
||||
"rawName" : "\"SUBMIT\"",
|
||||
"fullIdentifier" : "SUBMIT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ {
|
||||
"expression" : "loggingAction()",
|
||||
@@ -141,7 +144,10 @@
|
||||
"rawName" : "\"DONE\"",
|
||||
"fullIdentifier" : "DONE"
|
||||
} ],
|
||||
"event" : "ORDER_EVENT",
|
||||
"event" : {
|
||||
"rawName" : "\"ORDER_EVENT\"",
|
||||
"fullIdentifier" : "ORDER_EVENT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.STATE11",
|
||||
"fullIdentifier" : "States.STATE11"
|
||||
} ],
|
||||
"event" : "Events.EVENT10",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT10",
|
||||
"fullIdentifier" : "Events.EVENT10"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.STATE12",
|
||||
"fullIdentifier" : "States.STATE12"
|
||||
} ],
|
||||
"event" : "Events.EVENT11",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT11",
|
||||
"fullIdentifier" : "Events.EVENT11"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.STATE13",
|
||||
"fullIdentifier" : "States.STATE13"
|
||||
} ],
|
||||
"event" : "Events.EVENT12",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT12",
|
||||
"fullIdentifier" : "Events.EVENT12"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.STATE14",
|
||||
"fullIdentifier" : "States.STATE14"
|
||||
} ],
|
||||
"event" : "Events.EVENT13",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT13",
|
||||
"fullIdentifier" : "Events.EVENT13"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.STATE15",
|
||||
"fullIdentifier" : "States.STATE15"
|
||||
} ],
|
||||
"event" : "Events.EVENT14",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT14",
|
||||
"fullIdentifier" : "Events.EVENT14"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATE16",
|
||||
"fullIdentifier" : "States.STATE16"
|
||||
} ],
|
||||
"event" : "Events.EVENT15",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT15",
|
||||
"fullIdentifier" : "Events.EVENT15"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -232,7 +277,10 @@
|
||||
"rawName" : "States.STATEY",
|
||||
"fullIdentifier" : "States.STATEY"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -694,7 +742,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_1",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_1"
|
||||
} ],
|
||||
"event" : "Events.EVENTX",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTX",
|
||||
"fullIdentifier" : "Events.EVENTX"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -85,7 +85,10 @@
|
||||
"rawName" : "\"PROCESSING\"",
|
||||
"fullIdentifier" : "PROCESSING"
|
||||
} ],
|
||||
"event" : "SUBMIT",
|
||||
"event" : {
|
||||
"rawName" : "\"SUBMIT\"",
|
||||
"fullIdentifier" : "SUBMIT"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ {
|
||||
"expression" : "processAction()",
|
||||
@@ -106,7 +109,10 @@
|
||||
"rawName" : "\"COMPLETED\"",
|
||||
"fullIdentifier" : "COMPLETED"
|
||||
} ],
|
||||
"event" : "FINISH",
|
||||
"event" : {
|
||||
"rawName" : "\"FINISH\"",
|
||||
"fullIdentifier" : "FINISH"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "OrderStates.PAID",
|
||||
"fullIdentifier" : "OrderStates.PAID"
|
||||
} ],
|
||||
"event" : "OrderEvents.PAY",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.PAY",
|
||||
"fullIdentifier" : "OrderEvents.PAY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "OrderStates.FULFILLED",
|
||||
"fullIdentifier" : "OrderStates.FULFILLED"
|
||||
} ],
|
||||
"event" : "OrderEvents.FULFILL",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.FULFILL",
|
||||
"fullIdentifier" : "OrderEvents.FULFILL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "OrderStates.CANCELED",
|
||||
"fullIdentifier" : "OrderStates.CANCELED"
|
||||
} ],
|
||||
"event" : "OrderEvents.CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.CANCEL",
|
||||
"fullIdentifier" : "OrderEvents.CANCEL"
|
||||
},
|
||||
"guard" : {
|
||||
"expression" : "new Guard<OrderStates,OrderEvents>(){\n @Override public boolean evaluate( StateContext<OrderStates,OrderEvents> context){\n return false;\n }\n}\n",
|
||||
"isLambda" : true,
|
||||
@@ -71,7 +80,10 @@
|
||||
"rawName" : "OrderStates.CANCELED",
|
||||
"fullIdentifier" : "OrderStates.CANCELED"
|
||||
} ],
|
||||
"event" : "OrderEvents.CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.CANCEL",
|
||||
"fullIdentifier" : "OrderEvents.CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -82,7 +94,10 @@
|
||||
"fullIdentifier" : "OrderStates.SUBMITTED"
|
||||
} ],
|
||||
"targetStates" : [ ],
|
||||
"event" : "OrderEvents.ABCD",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.ABCD",
|
||||
"fullIdentifier" : "OrderEvents.ABCD"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -233,7 +248,10 @@
|
||||
"fullIdentifier" : "OrderStates.PAID1"
|
||||
} ],
|
||||
"targetStates" : [ ],
|
||||
"event" : "OrderEvents.ABCD",
|
||||
"event" : {
|
||||
"rawName" : "OrderEvents.ABCD",
|
||||
"fullIdentifier" : "OrderEvents.ABCD"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ {
|
||||
"expression" : "new Action<OrderStates,OrderEvents>(){\n @Override public void execute( StateContext<OrderStates,OrderEvents> context){\n ;\n }\n}\n",
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.STATE11",
|
||||
"fullIdentifier" : "States.STATE11"
|
||||
} ],
|
||||
"event" : "Events.EVENT10",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT10",
|
||||
"fullIdentifier" : "Events.EVENT10"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.STATE12",
|
||||
"fullIdentifier" : "States.STATE12"
|
||||
} ],
|
||||
"event" : "Events.EVENT11",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT11",
|
||||
"fullIdentifier" : "Events.EVENT11"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.STATE13",
|
||||
"fullIdentifier" : "States.STATE13"
|
||||
} ],
|
||||
"event" : "Events.EVENT12",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT12",
|
||||
"fullIdentifier" : "Events.EVENT12"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.STATE14",
|
||||
"fullIdentifier" : "States.STATE14"
|
||||
} ],
|
||||
"event" : "Events.EVENT13",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT13",
|
||||
"fullIdentifier" : "Events.EVENT13"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.STATE15",
|
||||
"fullIdentifier" : "States.STATE15"
|
||||
} ],
|
||||
"event" : "Events.EVENT14",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT14",
|
||||
"fullIdentifier" : "Events.EVENT14"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATE16",
|
||||
"fullIdentifier" : "States.STATE16"
|
||||
} ],
|
||||
"event" : "Events.EVENT15",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT15",
|
||||
"fullIdentifier" : "Events.EVENT15"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -232,7 +277,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -246,7 +294,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -260,7 +311,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -274,7 +328,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -288,7 +345,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -302,7 +362,10 @@
|
||||
"rawName" : "States.STATEY",
|
||||
"fullIdentifier" : "States.STATEY"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -764,7 +827,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_1",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_1"
|
||||
} ],
|
||||
"event" : "Events.EVENTX",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTX",
|
||||
"fullIdentifier" : "Events.EVENTX"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -813,7 +879,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_3",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_3"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -827,7 +896,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -841,7 +913,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
@@ -22,7 +22,10 @@
|
||||
"rawName" : "States.STATE2",
|
||||
"fullIdentifier" : "States.STATE2"
|
||||
} ],
|
||||
"event" : "Events.EVENT1",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT1",
|
||||
"fullIdentifier" : "Events.EVENT1"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -36,7 +39,10 @@
|
||||
"rawName" : "States.STATE3",
|
||||
"fullIdentifier" : "States.STATE3"
|
||||
} ],
|
||||
"event" : "Events.EVENT2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT2",
|
||||
"fullIdentifier" : "Events.EVENT2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -50,7 +56,10 @@
|
||||
"rawName" : "States.STATE4",
|
||||
"fullIdentifier" : "States.STATE4"
|
||||
} ],
|
||||
"event" : "Events.EVENT3",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT3",
|
||||
"fullIdentifier" : "Events.EVENT3"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -64,7 +73,10 @@
|
||||
"rawName" : "States.STATE5",
|
||||
"fullIdentifier" : "States.STATE5"
|
||||
} ],
|
||||
"event" : "Events.EVENT4",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT4",
|
||||
"fullIdentifier" : "Events.EVENT4"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -78,7 +90,10 @@
|
||||
"rawName" : "States.STATE6",
|
||||
"fullIdentifier" : "States.STATE6"
|
||||
} ],
|
||||
"event" : "Events.EVENT5",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT5",
|
||||
"fullIdentifier" : "Events.EVENT5"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -92,7 +107,10 @@
|
||||
"rawName" : "States.STATE7",
|
||||
"fullIdentifier" : "States.STATE7"
|
||||
} ],
|
||||
"event" : "Events.EVENT6",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT6",
|
||||
"fullIdentifier" : "Events.EVENT6"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -106,7 +124,10 @@
|
||||
"rawName" : "States.STATE8",
|
||||
"fullIdentifier" : "States.STATE8"
|
||||
} ],
|
||||
"event" : "Events.EVENT7",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT7",
|
||||
"fullIdentifier" : "Events.EVENT7"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -120,7 +141,10 @@
|
||||
"rawName" : "States.STATE9",
|
||||
"fullIdentifier" : "States.STATE9"
|
||||
} ],
|
||||
"event" : "Events.EVENT8",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT8",
|
||||
"fullIdentifier" : "Events.EVENT8"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -134,7 +158,10 @@
|
||||
"rawName" : "States.STATE10",
|
||||
"fullIdentifier" : "States.STATE10"
|
||||
} ],
|
||||
"event" : "Events.EVENT9",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT9",
|
||||
"fullIdentifier" : "Events.EVENT9"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -148,7 +175,10 @@
|
||||
"rawName" : "States.STATE11",
|
||||
"fullIdentifier" : "States.STATE11"
|
||||
} ],
|
||||
"event" : "Events.EVENT10",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT10",
|
||||
"fullIdentifier" : "Events.EVENT10"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -162,7 +192,10 @@
|
||||
"rawName" : "States.STATE12",
|
||||
"fullIdentifier" : "States.STATE12"
|
||||
} ],
|
||||
"event" : "Events.EVENT11",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT11",
|
||||
"fullIdentifier" : "Events.EVENT11"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -176,7 +209,10 @@
|
||||
"rawName" : "States.STATE13",
|
||||
"fullIdentifier" : "States.STATE13"
|
||||
} ],
|
||||
"event" : "Events.EVENT12",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT12",
|
||||
"fullIdentifier" : "Events.EVENT12"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -190,7 +226,10 @@
|
||||
"rawName" : "States.STATE14",
|
||||
"fullIdentifier" : "States.STATE14"
|
||||
} ],
|
||||
"event" : "Events.EVENT13",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT13",
|
||||
"fullIdentifier" : "Events.EVENT13"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -204,7 +243,10 @@
|
||||
"rawName" : "States.STATE15",
|
||||
"fullIdentifier" : "States.STATE15"
|
||||
} ],
|
||||
"event" : "Events.EVENT14",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT14",
|
||||
"fullIdentifier" : "Events.EVENT14"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -218,7 +260,10 @@
|
||||
"rawName" : "States.STATE16",
|
||||
"fullIdentifier" : "States.STATE16"
|
||||
} ],
|
||||
"event" : "Events.EVENT15",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT15",
|
||||
"fullIdentifier" : "Events.EVENT15"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -232,7 +277,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -246,7 +294,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -260,7 +311,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -274,7 +328,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -288,7 +345,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -302,7 +362,10 @@
|
||||
"rawName" : "States.STATEY",
|
||||
"fullIdentifier" : "States.STATEY"
|
||||
} ],
|
||||
"event" : "Events.EVENTY",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTY",
|
||||
"fullIdentifier" : "Events.EVENTY"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -764,7 +827,10 @@
|
||||
"rawName" : "States.STATE_EXTRA_1",
|
||||
"fullIdentifier" : "States.STATE_EXTRA_1"
|
||||
} ],
|
||||
"event" : "Events.EVENTX",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENTX",
|
||||
"fullIdentifier" : "Events.EVENTX"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -778,7 +844,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
@@ -792,7 +861,10 @@
|
||||
"rawName" : "States.CANCEL",
|
||||
"fullIdentifier" : "States.CANCEL"
|
||||
} ],
|
||||
"event" : "Events.EVENT_CANCEL_2",
|
||||
"event" : {
|
||||
"rawName" : "Events.EVENT_CANCEL_2",
|
||||
"fullIdentifier" : "Events.EVENT_CANCEL_2"
|
||||
},
|
||||
"guard" : null,
|
||||
"actions" : [ ],
|
||||
"order" : null
|
||||
|
||||
Reference in New Issue
Block a user