-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain_model_diagram.uml
94 lines (63 loc) · 1.48 KB
/
domain_model_diagram.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
@startuml Analysis Class Diagram
title Analysis Class Diagram
' User classes
abstract class User {
}
class PageAdmin {
}
class Volunteer {
}
note right
Single person,
associated with SMB
end note
class Organiser {
}
note right
aka 'Charity'
end note
Volunteer --|> User
Organiser --|> User
PageAdmin -u|> User
' Site maintenance related classes
class Ticket {
}
Ticket "0..*" <- "0..*" User : < submits
PageAdmin "0..*" --> "0..*" Ticket : resolves >
' Opportunity related classes
class Opportunity {
}
note bottom
Volunteering Opportunity,
event or longer-term
end note
class Chat {
}
note top
Allows communication between
volunteers and organisers
end note
Chat "0..*" -- "1..*" Volunteer : connects >
Chat "0..*" -- "1..*" Organiser : connects >
class OpportunityWatchlist {
}
class Feedback {
}
note bottom
Personal and skill-specific feedback
between organisers and volunteers
end note
' Feedback relationships
Feedback "0..*" -- "1" Volunteer : rates >
Feedback "0..*" -- "1" Organiser : rates >
Volunteer "0..*" --> "0..*" Feedback : provides >
Organiser "0..*" --> "0..*" Feedback : provides >
' SMB Association relationships
SMB "1" -- "0..*" Volunteer : associated with >
' Opportunity relationships
Opportunity "0..*" -- "1" Organiser : < creates
Volunteer "0..*" -- "0..*" Opportunity : volunteers for >
' Opportunity Watchlist relationships
Volunteer "1" -- "0..1" OpportunityWatchlist : has >
OpportunityWatchlist "1" -- "0..*" Opportunity : contains >
@enduml