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