-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathworkspace.dsl
64 lines (53 loc) · 1.51 KB
/
workspace.dsl
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
workspace {
model {
!include ../hmcts.mdsl
# citizen = person "Citizen" "A citizen user"
# caseworker = person "Caseworker" "A case worker"
# caseworker -> xui_webapp "Uses"
# caseworker -> idam_web_public "Logs in with"
# citizen -> probate_frontend "Uses"
# citizen -> idam_web_public "Logs in with"
# ccd_data_store_api -> probate_back_office "Callbacks"
}
views {
!include ../hmcts.vdsl
systemContext jps "jps-context" {
include *
# exclude caseworker
# exclude citizen
# include xui
exclude idam
exclude rpe
exclude relationship==bsp->*
autoLayout
}
container jps "jps-overview" {
include *
# exclude caseworker
# exclude citizen
# include xui
exclude idam
exclude rpe
exclude relationship==bsp->*
autoLayout
}
# container jps "jps-citizen" {
# include *
# exclude idam
# exclude rpe
# exclude bsp
# autoLayout
# }
# container jps "jps-caseworker" {
# include *
# include caseworker
# include xui
# exclude citizen
# exclude nfdiv_frontend
# exclude idam
# exclude rpe
# exclude relationship==bsp->*
# autoLayout
# }
}
}