workflow_list.yml.dist 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. framework:
  2. workflows:
  3. olt_workflow:
  4. type: state_machine
  5. marking_store:
  6. type: single_state
  7. arguments:
  8. - currentState
  9. supports:
  10. - FTTHBundle\Entity\OLT
  11. initial_place: disabled
  12. places:
  13. - enabled
  14. - disabled
  15. transitions:
  16. disable:
  17. from: enabled
  18. to: disabled
  19. enable:
  20. from: disabled
  21. to: enabled
  22. onu_workflow:
  23. type: state_machine
  24. marking_store:
  25. type: single_state
  26. arguments:
  27. - currentState
  28. supports:
  29. - FTTHBundle\Entity\ONU
  30. initial_place: active
  31. places:
  32. - active
  33. - disable
  34. transitions:
  35. add_config:
  36. from: active
  37. to: active
  38. disable:
  39. from: active
  40. to: disable
  41. active:
  42. from: disable
  43. to: active
  44. onu_workflow_2:
  45. type: state_machine
  46. marking_store:
  47. type: single_state
  48. arguments:
  49. - currentState
  50. supports:
  51. - FTTHBundle\Entity\ONU
  52. initial_place: created
  53. places:
  54. - created
  55. - deleted
  56. - active
  57. - disable
  58. transitions:
  59. created_active:
  60. from: created
  61. to: active
  62. created_deleted:
  63. from: created
  64. to: deleted
  65. active:
  66. from: disable
  67. to: active
  68. disable_deleted:
  69. from: disable
  70. to: deleted
  71. add_config:
  72. from: active
  73. to: active
  74. disable:
  75. from: active
  76. to: disable
  77. active_deleted:
  78. from: active
  79. to: deleted
  80. deleted_created:
  81. from: deleted
  82. to: created