From 841eccc8484b24aa5a05f8fd28c7301f6902a6f0 Mon Sep 17 00:00:00 2001 From: maximesson Date: Fri, 17 Apr 2020 16:21:32 +0200 Subject: [PATCH] Standardisation of names Change-Id: Ic22a51c4afe7bfa20d51d3573610b75a449f6ff8 Issue-ID: NONRTRIC-158 Signed-off-by: maximesson --- README.md | 2 +- docs/overview.rst | 4 ++-- .../portal/nonrtric/controlpanel/controller/PolicyController.java | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bd0ff26..1e1304c 100644 --- 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 diff --git a/docs/overview.rst b/docs/overview.rst index 52c95f2..ec14eb6 100644 --- a/docs/overview.rst +++ b/docs/overview.rst @@ -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 diff --git a/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/controller/PolicyController.java b/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/controller/PolicyController.java index 44d5244..538030c 100644 --- a/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/controller/PolicyController.java +++ b/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/controller/PolicyController.java @@ -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 getAllPolicyTypes(HttpServletResponse response) { -- 2.16.6