-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added simpler sequence diagram * Don't cut off diagrams
- Loading branch information
Showing
5 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@startuml | ||
|
||
participant "Consumer" as consumer | ||
participant "Association Register" as association | ||
participant "Authorization Register (owner)" as ownerAr | ||
participant "Resource (owner)" as ownerApi | ||
|
||
consumer -> ownerApi : /token (get authentication token) | ||
ownerApi -> ownerApi : check client assertion | ||
ownerApi -> association : /token (get authentication token) | ||
association -> association : check client assertion | ||
association -> association : check owner still compliant | ||
association -> ownerApi : OK: token | ||
ownerApi -> association : /party (with token get consumer party information) | ||
association -> association : check token | ||
association -> ownerApi : OK: party info | ||
ownerApi -> ownerApi : check consumer party info for compliance | ||
ownerApi -> consumer : OK: token | ||
|
||
consumer -> ownerApi : /some-resource (with token) | ||
ownerApi -> ownerApi : check token | ||
ownerApi -> consumer : OK: data | ||
|
||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.