diff options
Diffstat (limited to 'docs/clamp/acm/plantuml/system-dialogues/UndeployResponseStored.puml')
-rw-r--r-- | docs/clamp/acm/plantuml/system-dialogues/UndeployResponseStored.puml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/clamp/acm/plantuml/system-dialogues/UndeployResponseStored.puml b/docs/clamp/acm/plantuml/system-dialogues/UndeployResponseStored.puml new file mode 100644 index 00000000..e44183d4 --- /dev/null +++ b/docs/clamp/acm/plantuml/system-dialogues/UndeployResponseStored.puml @@ -0,0 +1,17 @@ +@startuml + +participant ACM_Runtime +participant Participant +database ACM_Database + +ACM_Runtime <- Participant: [ASYNC] Undeploy Automation Composition Element Instance Response +ACM_Runtime -> ACM_Database: Store Automation Composition Element Instance Response Information + +alt Is AC Element Instance undeployed? + ACM_Runtime -> ACM_Database: Mark AC Element Instance as UNDEPLOYED + alt Are all the other AC Element Instances in this AC Instance in state UNDEPLOYED? + ACM_Runtime -> ACM_Runtime: Set AC Instance state as UNDEPLOYED + end +end + +@enduml |