Merge "Bugfix, handling of empty types"
authorJohn Keeney <John.Keeney@est.tech>
Tue, 21 Apr 2020 13:52:01 +0000 (13:52 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Tue, 21 Apr 2020 13:52:01 +0000 (13:52 +0000)
README.md
docs/overview.rst
webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/controller/PolicyController.java

index bd0ff26..1e1304c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# O-RAN-SC NonRT RIC Control Panel Web Application
+# O-RAN-SC Non-RT RIC Control Panel Web Application
 
 The O-RAN Non-RT RIC Control Panel provides administrative and operator functions for a Near-RT RIC through the A1 API.
 This web app consists of an Angular (version 8) front end
index 52c95f2..ec14eb6 100644 (file)
@@ -5,8 +5,8 @@
 Control Panel Overview
 ======================
 
-The Non-RT RIC Control Panel is a graphical user  user interface that enables the user to manage the Policies in the
-network. The Control Panel interacts with the Policy agent via a REST API.
+The Non-RT RIC Control Panel is a graphical user interface that enables the user to manage the Policies in the
+network. The Control Panel interacts with the Policy Agent via a REST API.
 The Control Panel generates its GUI from JSON schemas in a model driven fashion.
 
 The Control Panel consists of a back end implemented as a Java Spring Boot application and a fronted developed using the
index 44d5244..538030c 100644 (file)
@@ -45,7 +45,7 @@ import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.bind.annotation.RestController;
 
 /**
- * Proxies calls from the front end to the Policy agent API.
+ * Proxies calls from the front end to the Policy Agent API.
  *
  * If a method throws RestClientResponseException, it is handled by
  * {@link CustomResponseEntityExceptionHandler#handleProxyMethodException(Exception, org.springframework.web.context.request.WebRequest)}
@@ -80,7 +80,7 @@ public class PolicyController {
     /*
      * The fields are defined in the Policy Control Typescript interface.
      */
-    @ApiOperation(value = "Gets the policy types from Near Realtime-RIC")
+    @ApiOperation(value = "Gets the policy types from Near-RT RIC")
     @GetMapping(POLICY_TYPES_METHOD)
     @Secured({ControlPanelConstants.ROLE_ADMIN, ControlPanelConstants.ROLE_STANDARD})
     public ResponseEntity<String> getAllPolicyTypes(HttpServletResponse response) {