-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign_class_diagram_system.uml
170 lines (136 loc) · 2.77 KB
/
design_class_diagram_system.uml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
@startuml
title Design Class Diagram - System
abstract class User {
+userID : int
+username : str
+password : str
+email : str
+status : UserStatus
+changePassword()
+recoverPassword()
+ban()
}
User .r. UserStatus
enum UserStatus{
Active
Suspended
Banned
}
class PageAdmin {
+resolveTicket()
+manageSystem()
+manageTechCategories()
}
class Notification {
+notificationID : int
+message : str
+type : NotificationType
+timestamp : datetime
+send()
}
class Chat {
+chatID : int
+participants : list[User]
+creationDate : datetime
+sendMessage()
+markAsRead()
+addParticipant()
+removeParticipant()
}
class Message {
+messageID : int
+content : str
+timestamp : datetime
+senderID : int
+isRead : bool
+send()
+markAsRead()
+delete()
}
class Inbox {
+inboxID : int
+userID : int
+getChats()
+getUnreadMessages()
+markAllAsRead()
}
class Ticket {
+ticketID : int
+category : TicketCategory
+description : str
+urgencyLevel : int
+status : TicketStatus
+submit()
}
note right
Users may flag tickets as urgent
if they deem it approporiate
end note
class TicketQueue {
+queueID : int
+name : str
+addTicket()
+removeTicket()
+getNextTicket()
+getAllTickets()
}
abstract class Dashboard {
+refreshData()
+displayMetrics()
}
class AdminDashboard{
+queue : TicketQueue
}
enum TicketCategory{
User Moderation
Content Moderation
Verification Issue
Bug Report
Performance Alerts
Integration Issue
}
enum TicketStatus {
Submitted
InReview
Closed
}
class UserDashboard {
+impactMetrics
+activeOpportunities
+completedOpportunities
+showOpportunity()
}
note bottom
UserDashboard is populated dynamically
with active opportunities & stats
end note
class UserSession {
+sessionID : int
+startTime : datetime
+lastActiveTime : datetime
+isActive : bool
+login()
+logout()
+validateSession()
+refreshSession()
+trackActivity()
}
User <|-- PageAdmin
User <|-- Volunteer
User <|-- Organiser
UserDashboard -|> Dashboard
AdminDashboard -u|> Dashboard
User "1" -- "0..*" UserSession : "maintains >"
User "1" .. "1" UserDashboard : "views >"
Dashboard "1" .d. "1" Inbox : "has >"
Inbox "1" o.. "0..*" Chat : "displays >"
Chat "1" o.d. "0..*" Message : "contains >"
Ticket "0..*" --> "1" TicketStatus
Ticket "0..*" --> "1" TicketCategory
TicketQueue "1" o- "0..*" Ticket : contains >
AdminDashboard .. TicketQueue : "< shown on"
Ticket "0..*" .u. "0..*" User : "< submits"
TicketQueue .. PageAdmin : "< manages"
PageAdmin "0..*" --> "0..*" Ticket : "resolves >"
Notification .r. User : "< alerted by"
@enduml