-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.plantuml
68 lines (51 loc) · 1.03 KB
/
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
@startuml
note as N0
Identity(A->_->B)?
:= (Security(A->IdP) * @Identity(A->IdP)) *
(Security(IdP->B) * Identity(IdP->B))
:= (TLS * 1) * (TLS * Auth)
With TLS=1 (secure):
Identity(A->_->B) := Auth
No weight. Hypothesis that TLS is secure
and that Alice trust IdP for Identity
recommandation.
end note
class Relation {
+ Scope: visibility
+ Expr: value
}
class Agent {
+ severityWeightFunction()
+ interestWeightFunction()
}
note "node A, B, IdP" as N1
N1 .. Agent
note as N2
A : {
-> private IdP: @Identity = 1
-> private Idp: Securityi = TLS
}
IdP : {
-> B: Identity = Auth
-> B: Security = TLS
}
end note
N2 .. Relation
Agent -> "0..*" Agent
(Agent, Agent) .. Relation
Relation --> Type
Type - Type : Depends
note right on link
dependency
Identity -> Security
end note
Type <|-- RType
note on link
@Identity relations can carry
trust from an Identity relation
TrustChain := (RecommenderTrust)* FunctionnalTrust
end note
note left of Type : Identity\nSecurity
note left of RType : @Identity
Relation -- Tag
@enduml