forked from eclipse-tractusx/traceability-foss
-
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.
chore(documentation): eclipse-tractusx#915 update BPN-EDC configurati…
…on in docu
- Loading branch information
Showing
2 changed files
with
49 additions
and
1 deletion.
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
40 changes: 40 additions & 0 deletions
40
docs/src/uml-diagrams/user-manual/bpn-edc-configuration.puml
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,40 @@ | ||
@startuml | ||
skinparam monochrome true | ||
skinparam shadowing false | ||
skinparam defaultFontName "Architects daughter" | ||
|
||
title BPN-EDC configuration (simplified) | ||
participant "Trace-X" as TX | ||
participant "DiscoveryFinder" as DF | ||
participant "Receiver BPN" as R | ||
participant "BPN-EDC config" as BEC | ||
|
||
activate TX | ||
TX -> BEC: Look up URL for receiver | ||
activate BEC | ||
BEC --> TX: URL | ||
deactivate BEC | ||
TX -> R: Request | ||
activate R | ||
alt Request with config URL successful | ||
R --> TX: Response | ||
deactivate R | ||
else Request with config URL unsuccessful | ||
TX -> DF: Look up URLs for receiver | ||
activate DF | ||
DF --> TX: URLs | ||
deactivate DF | ||
loop For each provided URL | ||
TX -> R: Request | ||
activate R | ||
break Success | ||
R --> TX: Response | ||
deactivate R | ||
end | ||
end | ||
alt Request with all DiscoveryFinder URLs unsuccessful | ||
TX -> TX: Error | ||
end | ||
end | ||
|
||
@enduml |