-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.puml
37 lines (29 loc) · 874 Bytes
/
test.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@startuml test1
!theme icc from https://raw.githubusercontent.com/iC-Consult/plantuml-theme/1.0
!define ICCLib https://raw.githubusercontent.com/iC-Consult/plantuml-theme/1.0/lib
!include ICCLib/common.puml
!include ICCLib/forgerock.puml
ForgeRockAM(am, "Access Management")
ForgeRockIDM(idm, "Identity Management")
ForgeRockDS(ds, "ID Repo")
ForgeRockDS(cts, "CTS")
ForgeRockAdminUI(platform, "Admin UI")
ForgeRockLoginUI(loginui, "Login UI")
ForgeRockEnduserUI(enduserui, "Enduser UI")
ForgeRockIG(ig, "IG")
ig -down-> platform : "/admin"
ig -down-> loginui : "/login"
ig -down-> am : "/am"
ig -down-> idm : "/openidm"
ig -down-> enduserui : "/platform"
platform -down-> am
platform -down-> idm
enduserui -down-> am
enduserui -down-> idm
loginui -down-> am
am -right-> idm : "REST API"
idm -right-> am : "OAuth2"
am -down-> ds
idm -down-> ds
am -down-> cts
@enduml