Status notifications: Remove statusNotificationUri optional input parameter when... 36/139136/2 1.7.1
authorraviteja.karumuri <raviteja.karumuri@est.tech>
Wed, 4 Sep 2024 17:06:29 +0000 (18:06 +0100)
committerJohn Keeney <john.keeney@est.tech>
Fri, 11 Oct 2024 13:22:42 +0000 (13:22 +0000)
Issue-ID: CCSDK-4052
Change-Id: I4fccf2704938e2dc676f622eb36cd87d5091b4d4
Signed-off-by: Raviteja Karumuri <raviteja.karumuri@est.tech>
(cherry picked from commit 46722f78b391c28d2bb764358560bf4143f1a92f)

a1-policy-management/api/pms-api-v3.yaml
a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/util/v3/Helper.java

index 44038e7..d2d613a 100644 (file)
@@ -877,9 +877,6 @@ components:
             'rApp ID'
         policyObject:
           $ref: '#/components/schemas/PolicyObject'
-        statusNotificationUri:
-          description: Callback URI for policy status updates
-          type: string
         policyTypeId:
           description: identity of the policy type
           type: string
index 0cb9135..406dec0 100644 (file)
@@ -93,8 +93,6 @@ public class Helper {
                         : policyObjectInformation.getServiceId())
                 .lastModified(Instant.now())
                 .isTransient(policyObjectInformation.getTransient())
-                .statusNotificationUri(policyObjectInformation.getStatusNotificationUri() == null ? ""
-                        : policyObjectInformation.getStatusNotificationUri())
                 .build();
     }