12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- framework:
- workflows:
- olt_workflow:
- type: state_machine
- marking_store:
- type: single_state
- arguments:
- - currentState
- supports:
- - FTTHBundle\Entity\OLT
- initial_place: disabled
- places:
- - enabled
- - disabled
- transitions:
- disable:
- from: enabled
- to: disabled
- enable:
- from: disabled
- to: enabled
- onu_workflow:
- type: state_machine
- marking_store:
- type: single_state
- arguments:
- - currentState
- supports:
- - FTTHBundle\Entity\ONU
- initial_place: active
- places:
- - active
- - disable
- transitions:
- add_config:
- from: active
- to: active
- disable:
- from: active
- to: disable
- active:
- from: disable
- to: active
- onu_workflow_2:
- type: state_machine
- marking_store:
- type: single_state
- arguments:
- - currentState
- supports:
- - FTTHBundle\Entity\ONU
- initial_place: created
- places:
- - created
- - deleted
- - active
- - disable
- transitions:
- created_active:
- from: created
- to: active
- created_deleted:
- from: created
- to: deleted
- active:
- from: disable
- to: active
- disable_deleted:
- from: disable
- to: deleted
- add_config:
- from: active
- to: active
- disable:
- from: active
- to: disable
- active_deleted:
- from: active
- to: deleted
- deleted_created:
- from: deleted
- to: created
|