flow.xml 581 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <flow>
  3. <nodes>
  4. <node id="d" type="script">
  5. <![CDATA[
  6. str = demo.getDemoStr1();
  7. defaultContext.setData("demo", str);
  8. ]]>
  9. </node>
  10. <node id="e" type="script">
  11. <![CDATA[
  12. str = demo2.getDemoStr2("kobe");
  13. defaultContext.setData("demo", str);
  14. ]]>
  15. </node>
  16. </nodes>
  17. <chain name="chain1">
  18. THEN(a,b,c,d)
  19. </chain>
  20. <chain name="chain2">
  21. THEN(a,b,c,e)
  22. </chain>
  23. </flow>