blob: a06fdf5f63faaa0fee374d5ca0fad4cb3a0bae55 [file] [log] [blame]
liamfallonc9e27902019-05-28 13:27:04 +00001@startuml
2
3title Policy Execution
4
5participant REQUESTOR
6participant RESPONDEE
7participant PDP
8
9autonumber
10
11alt Synchronous Invocation
12 REQUESTOR --> PDP: Execute Policy
13 activate PDP
14 hnote over REQUESTOR : wait
15 PDP --> REQUESTOR: Policy Execution Result
16 deactivate PDP
17else Asynchronous Invocation
18 REQUESTOR --> PDP: Execute Policy
19 activate PDP
20 PDP --> RESPONDEE: Policy Execution Result
21 deactivate PDP
22end
23
24@enduml