~aleteoryx/muditaos

ref: 3fb5b81ef2c08e746f11ad941abb535f8f1fb867 muditaos/module-apps/notifications/doc/notifications_provider_structure.puml -rw-r--r-- 527 bytes
3fb5b81e — Michał Kamoń [EGD-6602] Add documentation for home notifications 4 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
@startuml
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