Standardisation of names 11/3311/2
authormaximesson <maxime.bonneau@est.tech>
Fri, 17 Apr 2020 14:21:32 +0000 (16:21 +0200)
committermaximesson <maxime.bonneau@est.tech>
Mon, 20 Apr 2020 08:09:43 +0000 (10:09 +0200)
Change-Id: Ic22a51c4afe7bfa20d51d3573610b75a449f6ff8
Issue-ID: NONRTRIC-158
Signed-off-by: maximesson <maxime.bonneau@est.tech>
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) {