diff options
Diffstat (limited to 'docs/clamp/acm/plantuml/states/AcInstanceStates.puml')
-rw-r--r-- | docs/clamp/acm/plantuml/states/AcInstanceStates.puml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/clamp/acm/plantuml/states/AcInstanceStates.puml b/docs/clamp/acm/plantuml/states/AcInstanceStates.puml new file mode 100644 index 00000000..17958411 --- /dev/null +++ b/docs/clamp/acm/plantuml/states/AcInstanceStates.puml @@ -0,0 +1,22 @@ +@startuml + +[*] --> UNDEPLOYED: Create +UNDEPLOYED --> [*]: Delete +UNDEPLOYED --> DEPLOYING: Deploy +DEPLOYING --> DEPLOYED: AC Element Instances\nall DEPLOYED +DEPLOYING --> UNDEPLOYING: Undeploy +DEPLOYED --> UNDEPLOYING: Undeploy +UNDEPLOYING --> UNDEPLOYED: AC Element Types\nall UNDEPLOYED + + +state DEPLOYED { + [*] --> LOCKED: Deploy + LOCKED --> [*]: Undeploy + LOCKED --> UNLOCKING: Unlock + UNLOCKING --> UNLOCKED: AC Element Types\nall UNLOCKED + UNLOCKED --> LOCKING: Lock + UNLOCKING --> LOCKING: Lock + LOCKING --> LOCKED: AC Element Types\nall LOCKED +} + +@enduml |