Versions Compared

Key

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

The user triggers a configuration, which will be forwarded to the O-RAN components. The flow is successfully passed when the corresponding VES message is available on DMaaP and can be processed by any other ONAP components.

Note: The VES notification syntax for a new ves-domain "cmNotify" is currently not available (state: 2019-11-21). 


PlantUML Macro
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' 
' PlantUML for ONAP/O-RAN pnfRegistration use case 2019-12
'
' Copyright 2019 highstreet technologies GmbH
' Licensed under the Apache License, Version 2.0 (the "License"); 
' you may not use this file except in compliance with the License. 
' You may obtain a copy of the License at 
' 
' http://www.apache.org/licenses/LICENSE-2.0 
' 
' Unless required by applicable law or agreed to in writing, software 
' distributed under the License is distributed on an "AS IS" BASIS, 
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
' See the License for the specific language governing permissions and 
' limitations under the License. 
'

@startuml

' Diagram 
title 
  ONAP/O-RAN Basic Configuration use case 2019-12 
end title

box “Network” #lightpink
  participant "O-RAN Component\n(NTSim)" as ntsim
end box

box "Service Management and Orchestration (SMO) (e.g. ONAP)" #gold
  participant "VES Collector" as ves
  participant "DMaaP" as dmaap
  database "Log" as log
  participant "SDN-R" as sdnr
  participant "Web UI" as ui
end box
  actor "User" as user 

autonumber 1 1 "<b>[00]"

user -> ui: Trigger configuration
ui -> sdnr: RestConf: Configuration request
sdnr -> ntsim: NetConf: edit-config
ntsim -> sdnr: NetConf: success
sdnr -> ui: RestConf: success


ntsim -> ves: REST: VES:cmNotify
ves -> dmaap: REST: Publish event \nunauthenticated.SEC_CONFIG_OUTPUT
sdnr -> dmaap: REST: Get topic \nunauthenticated.SEC_CONFIG_OUTPUT
dmaap -> sdnr: REST: cmNotify
sdnr -> sdnr: RESTAlarm toprocessing "DeviceManager"
sdnr -> log: Create EventLog entry
sdnr -> ui: WebSocket: cmNotify
ui -> user: Inform about config changes

user -> ui: check event log
ui -> sdnr: RestConf: Get EventLog
sdnr -> log: REST: Forward Log Request
log -> sdnr: Rest: Log response
sdnr -> ui: Response with EventLogEntries
ui -> user: View EventLogs

' End Diagram
' Format
header
  <b><font color=#8888ff>License</font></b>
  <b><font color=#8888ff>Apache 2.0</font></b>
end header

right footer 
  Thanks to plantUml! 
  2019-11-21 | onap.org | o-ran-sc.org
end footer

skinparam backgroundColor #fefefe

skinparam backgroundColor #fefefe
'skinparam handwritten true
skinparam roundcorner 15

skinparam databaseBorderColor #444444
skinparam databaseBackgroundColor #ffffee
skinparam databaseFontColor #444444

skinparam sequence {
  MessageAlign left
  ArrowColor #2277dd
  ArrowFontColor #444444
  ActorBorderColor #444444
  LifeLineBorderColor #444444
  LifeLineBackgroundColor #eeeeee

  BoxBorderColor #444444

  GroupBorderColor #444444
  GroupBackgroundColor #eeeeee

  ParticipantBorderColor #444444
  ParticipantBackgroundColor #ffffdd
  ParticipantFontColor #444444

  ActorBackgroundColor #ffffdd
  'ActorFontColor DeepSkyBlue
  'ActorFontSize 17
  'ActorFontName Aapex
}

@enduml