12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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
|