Upgrade E2 manager to spec dated 2019-06-30 44/444/2
authorLott, Christopher (cl778h) <cl778h@att.com>
Sun, 30 Jun 2019 14:08:51 +0000 (10:08 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Mon, 1 Jul 2019 15:07:29 +0000 (11:07 -0400)
This renames the get-nodeb-ids endpoint path slightly.

Change-Id: I8156d325bf023d5ed1beb0c9fdfda09d25b1e9e7
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
docs/release-notes.rst
e2-mgr-client/pom.xml
e2-mgr-client/src/main/resources/E2M_API_2019-06-30.yaml [moved from e2-mgr-client/src/main/resources/E2_Manager_API_2019-06-26.yaml with 99% similarity]
webapp-backend/pom.xml
webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/E2ManagerController.java

index ff4e6b9..3e27042 100644 (file)
 RIC Dashboard Release Notes
 ===========================
 
-Version 1.0.5, 28 June 2019
+Version 1.0.5, 1 July 2019
 ---------------------------
 * Upgrade to Angular version 8
 * Upgrade to Spring-Boot 2.1.6.RELEASE
 * Fixed AC xApp policy page title is not aligned
-* Update E2 manager client to spec version 20190626
+* Update E2 manager client to spec version 20190630
 * Add configuration-driven mock of E2 getNodebIdList
 
 Version 1.0.4, 27 June 2019
@@ -49,13 +49,8 @@ Version 1.0.4, 27 June 2019
 * Update App manager client to spec version 0.1.5
 * Move RAN connection feature to control screen
 * Rework admin table
-<<<<<<< HEAD
-* Update the notification service
-* Remove the RAN connection invocation link from left menu and move it to control screen
-=======
 * Update the notification service 
 * Move RAN connection feature to control screen
->>>>>>> Upgrade E2 to version 20190626
 * Repair deploy-app feature and use icon instead of text button
 
 Version 1.0.3, 28 May 2019
index a467665..a2f38a5 100644 (file)
@@ -31,7 +31,7 @@ limitations under the License.
        <groupId>org.o-ran-sc.ric.plt.e2mgr.client</groupId>
        <artifactId>e2-mgr-client</artifactId>
        <name>RIC E2 Manager client</name>
-       <version>20190626-SNAPSHOT</version>
+       <version>20190630-SNAPSHOT</version>
        <properties>
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -104,7 +104,7 @@ limitations under the License.
                                                        <goal>generate</goal>
                                                </goals>
                                                <configuration>
-                                                       <inputSpec>${project.basedir}/src/main/resources/E2_Manager_API_2019-06-26.yaml</inputSpec>
+                                                       <inputSpec>${project.basedir}/src/main/resources/E2M_API_2019-06-30.yaml</inputSpec>
                                                        <language>java</language>
                                                        <packageName>${client.base.package.name}</packageName>
                                                        <modelPackage>${client.base.package.name}.model</modelPackage>
@@ -134,7 +134,7 @@ paths:
             application/problem+json:
               schema:
                 $ref: '#/components/schemas/ErrorResponse'
-  /nodeb/ids:
+  /nodeb-ids:
     get:
       tags:
         - nodeb
index 1107a48..cf19367 100644 (file)
@@ -56,7 +56,7 @@ limitations under the License.
                <dependency>
                        <groupId>org.o-ran-sc.ric.plt.e2mgr.client</groupId>
                        <artifactId>e2-mgr-client</artifactId>
-                       <version>20190626-SNAPSHOT</version>
+                       <version>20190630-SNAPSHOT</version>
                </dependency>
                <dependency>
                        <groupId>org.springframework.boot</groupId>
index 6b621f4..631515b 100644 (file)
@@ -148,7 +148,7 @@ public class E2ManagerController {
        }
 
        @ApiOperation(value = "Get RAN identities list.", response = NodebIdentity.class, responseContainer = "List")
-       @RequestMapping(value = "/nodeb/id", method = RequestMethod.GET)
+       @RequestMapping(value = "/nodeb-ids", method = RequestMethod.GET)
        public Object getNodebIdList() {
                logger.debug("getNodebIdList");
                try {