-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPHM-Model.plantuml
89 lines (74 loc) · 2.36 KB
/
PHM-Model.plantuml
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
@startuml
title __PHM_MODEL's Class Diagram__
namespace com.health_insurance.phm_model {
class com.health_insurance.phm_model.Action {
- actor : String
- actorPhoneNumber : String
- answerLabel : String
- answerRequired : Boolean
- channel : String
- close : String
- closeSignal : String
- description : String
- escalated : Boolean
- escalationActor : String
- escalationChannel : String
- escalationTimer : String
- expirationDate : Date
- id : Integer
- message : String
- naLabel : Boolean
- naTextLabel : String
- origId : String
- predecessor : Integer
- remind : Boolean
- reminderFrequency : String
- reminderFromAddress : String
- reminderSendAddress : String
- reminderSubject : String
- reminderText : String
- sendMessage : Boolean
- slaDueDate : String
- supplementalDocumentationLabel : String
- suppressed : Boolean
- suppressionPeriod : String
+ Action()
+ toString()
}
}
namespace com.health_insurance.phm_model {
class com.health_insurance.phm_model.Contact {
- email : String
- name : String
- phone : String
{static} - serialVersionUID : long
+ Contact()
+ toString()
}
}
namespace com.health_insurance.phm_model {
class com.health_insurance.phm_model.Contacts {
{static} - serialVersionUID : long
+ Contacts()
+ toString()
}
}
namespace com.health_insurance.phm_model {
class com.health_insurance.phm_model.Trigger {
- memberId : String
{static} - serialVersionUID : long
- triggerId : Integer
+ Trigger()
+ toString()
}
}
com.health_insurance.phm_model.Action .up.|> java.io.Serializable
com.health_insurance.phm_model.Contact .up.|> java.io.Serializable
com.health_insurance.phm_model.Contacts .up.|> java.io.Serializable
com.health_insurance.phm_model.Contacts -up-|> java.util.LinkedHashMap
com.health_insurance.phm_model.Trigger .up.|> java.io.Serializable
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact [email protected]
endfooter
@enduml