~aleteoryx/muditaos

ref: b95894a8abc10cddf0b58dda4b2569b01eec0d7e muditaos/module-apps/apps-common/notifications/doc/notifications_provider_owner_structure.puml -rw-r--r-- 821 bytes
b95894a8 — Lefucjusz [MOS-1064] Fix no input language selected for French/Spanish 2 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
29
30
31
32
33
34
35
36
@startuml
skinparam BackgroundColor F0F0F0
  skinparam linetype ortho
node "OwnerService" as owner{
    class "ApplicationManager" as apm
    class "APMController" as controller{
        {method} sendAction(...)
    }
    abstract "sys::Service" as serv
    serv <|-u-- apm
    controller "use"-d--> apm
}

class "ActionsParams" as params

node "Provider" as provider {
    class "NotificationProvider" as notProvider {
        {field} ownerService *
        {method} handle(...)
        {method} send()
        {method} requestNotSeenNotifications()
    }
    class "NotificationsChangedParams" as notifParams
    notProvider -l..>notifParams
}

provider -[hidden]d- owner

notProvider "use"--> serv
notProvider "use"--> controller
params "use"<-- controller
notifParams --|>params
apm "creates"..>notProvider


@enduml