Skip to content

Commit

Permalink
Update SequenceDiagram.FHIR-Directory.psearch_auth.puml
Browse files Browse the repository at this point in the history
Search sequence added
  • Loading branch information
gem-uhe authored Nov 17, 2023
1 parent 4d56df5 commit 43905fd
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/plantuml/SequenceDiagram.FHIR-Directory.psearch_auth.puml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ participant VClient as "Client Versicherter"

box VZD-FHIR-Directory #WhiteSmoke
participant "Auth-Service" as VzdAuth
participant fp as "FHIR-Proxy"
participant fd as "FHIR-Directory"
end box
participant sekIDP as "sektoraler IDP"
participant "Federation Master" as fedMaster
Expand Down Expand Up @@ -75,4 +77,19 @@ deactivate VzdAuth
deactivate VzdAuth

== ...fachlicher flow... ==
@enduml

VClient -> fp: GET /psearch?... (Auth Header mit\nsearch-accesstoken)
activate fp
fp -> fp: prüfe search-accesstoken

alt search-accesstoken is valid
fp -> fd: GET /?...
activate fd
fd --> fp: HTTP 200 OK\n(Result Body json)
deactivate fd
fp --> VClient: HTTP 200 OK (Result Body json)
else search-accesstoken is invalid
fp --> VClient: HTTP 401
deactivate fp
end
@enduml

0 comments on commit 43905fd

Please sign in to comment.