generated from IHE/supplement-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#152 Add discovery proxy basic sequence diagram
- Loading branch information
1 parent
57d67a6
commit fc90481
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
@startuml | ||
|
||
skinparam monochrome true | ||
autonumber | ||
|
||
|
||
!global $str_somds_provider = "SOMDS Provider" | ||
!global $str_somds_discovery_proxy = "SOMDS Discovery Proxy" | ||
!global $str_somds_consumer = "SOMDS Consumer" | ||
|
||
participant "$str_somds_provider" as provider | ||
participant "$str_somds_discovery_proxy" as discovery_proxy | ||
participant "$str_somds_consumer" as consumer | ||
|
||
==SDPi Discovery Proxy Option== | ||
|
||
discovery_proxy <- provider: Hello | ||
|
||
opt | ||
discovery_proxy -> consumer: Hello | ||
end | ||
|
||
alt | ||
consumer ->> discovery_proxy: Probe | ||
consumer <<-- discovery_proxy: ProbeMatch | ||
else | ||
consumer ->> discovery_proxy: Resolve | ||
consumer <<-- discovery_proxy: ResolveMatch | ||
end | ||
|
||
discovery_proxy <- provider: Bye | ||
|
||
opt | ||
consumer <- discovery_proxy: Bye | ||
end | ||
|
||
@enduml |