~aleteoryx/muditaos

ref: 3cbfe43a95610ad53a00a32bbfc3bf842013966f muditaos/module-apps/apps-common/notifications/doc/notifications_provider_structure.puml -rw-r--r-- 560 bytes
3cbfe43a — Marcin Zieliński [MOS-791] Introduce tri-state switch widget 3 years ago
                                                                                
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
@startuml
skinparam BackgroundColor F0F0F0
skinparam linetype ortho

node "Notifications" as notifs {
    class "Notification" as notif

    class "ConcreteNotification_A" as smsNotif
    class "ConcreteNotification_B" as callNotif

    notif <|-u-- smsNotif
    notif <|-u-- callNotif
}

node "Provider" as provider {
    class "NotificationProvider" as notProvider
    class "NotificationsChangedParams" as params
    notProvider -u..>params
}


notProvider "0..1"..> smsNotif
notProvider "0..1"..> callNotif
notProvider *-- notif

params *-->notif

@enduml