Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PlantUML Macro
@startuml
participant User as user order 1
participant GUI as gui order 2
participant SDNC as sdnc order 3
participant OAUthProvider as oauth order 4

    gui -> sdnc: GET /oauth/providers 
    sdnc -> gui: providers array
    user -> gui: Select OAuth provider
    gui -> oauth: /loginForm with params
    oauth -> gui: redirect loginForm
    user -> gui: fill login form
    gui -> oauth: POST /login with credentials
    oauth -> gui: [301] to redirectURI
    gui -> sdnc: GET /oauth/redirect with params
    sdnc -> oauth:POST /oauth2/token with params
    oauth -> sdnc: OAuthToken with roles
    sdnc -> sdnc: create odl bearer token with with roles
    sdnc -> gui: odl bearer token
    
    
    
@enduml

...