~aleteoryx/muditaos

ref: df12fbaa95eb446fe3df67782f369457e13ef9dc muditaos/module-apps/apps-common/notifications/doc/notifications_provider_structure.puml -rw-r--r-- 560 bytes
df12fbaa — Maciej Gibowicz [BH-2099] Add synchronization of custom quotes with Center 11 months 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