~aleteoryx/muditaos

ref: ab02490917d8b7fdf743b1024e674da4b15adb3c muditaos/module-apps/apps-common/notifications/doc/notifications_provider_structure.puml -rw-r--r-- 560 bytes
ab024909 — Lefucjusz [MOS-559] Fix phone unlock after mode change 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