-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from catenax-ng/main
docs(frontend): Update doc for Arc42 documentation
- Loading branch information
Showing
6 changed files
with
70 additions
and
2 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,14 @@ | ||
sequenceDiagram | ||
participant Country Risk EDC Consumer | ||
participant BPDM EDC | ||
participant OpenIDConnect Server | ||
participant BPDM Gate | ||
|
||
autonumber | ||
Country Risk EDC Consumer -->> BPDM EDC: Request Provider for Api With OAuth2 | ||
BPDM EDC -->>OpenIDConnect Server: Send Client Credentials | ||
OpenIDConnect Server-->> BPDM EDC: Respond OAuth2 Token | ||
BPDM EDC -->> BPDM Gate: Send Request with OAuth2 Token in Authorization Header | ||
BPDM Gate -->> OpenIDConnect Server: Validate Token | ||
OpenIDConnect Server -->> BPDM Gate: Confirms validity of Token | ||
BPDM Gate -->> BPDM Gate: Check "resource_access" section of OAuth Token |
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,22 @@ | ||
|
||
|
||
graph TD | ||
%% Scenario 1: Data Provision | ||
subgraph S1["Scenario 1: Data Provision"] | ||
OtherEDCSystems[("Other EDC Systems")]:::otherStyle -->|consumes data from| EDCProviderCR[("Country Risk EDC Provider")]:::providerStyle | ||
EDCProviderCR -->|requests data from| CRApp[("Country Risk Application")]:::appStyle | ||
end | ||
|
||
%% Scenario 2: Data Consumption | ||
subgraph S2["Scenario 2: Data Consumption"] | ||
CRApp2[("Country Risk Application")]:::appStyle -->|consumes data from| EDCC[("Country Risk EDC Consumer")]:::consumerStyle | ||
EDCC -->|requests data from| EDCGateProvider[("EDC Gate Provider")]:::gateStyle | ||
EDCGateProvider -->|requests data from| BPDM[("BPDM Application")]:::bpdmStyle | ||
end | ||
|
||
classDef appStyle fill:#ffcccc,stroke:#333,stroke-width:4px; | ||
classDef providerStyle fill:#ccffcc,stroke:#333,stroke-width:4px; | ||
classDef consumerStyle fill:#ccccff,stroke:#333,stroke-width:4px; | ||
classDef otherStyle fill:#fff0b3,stroke:#333,stroke-width:4px; | ||
classDef gateStyle fill:#f0b3ff,stroke:#333,stroke-width:4px; | ||
classDef bpdmStyle fill:#ffffb3,stroke:#333,stroke-width:4px; |