workflow_list.yml.dist 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. nose:
  45. type: state_machine
  46. marking_store:
  47. type: single_state
  48. arguments:
  49. - currentState
  50. supports:
  51. - FTTHBundle\Entity\ONU
  52. initial_place: state_two
  53. places:
  54. - state_one
  55. - state_two
  56. - state_three
  57. transitions:
  58. one_to_two:
  59. from: state_one
  60. to: state_two
  61. two_to_three:
  62. from: state_two
  63. to: state_three
  64. two_to_one:
  65. from: state_two
  66. to: state_one
  67. three_to_one:
  68. from: state_three
  69. to: state_one