Modify policy-notification to align with policy. 68/109268/1
authorNiranjana <niranjana.y60@wipro.com>
Wed, 17 Jun 2020 15:07:05 +0000 (20:37 +0530)
committerNiranjana <niranjana.y60@wipro.com>
Wed, 17 Jun 2020 15:07:05 +0000 (20:37 +0530)
Issue-ID: DCAEGEN2-2216
Signed-off-by: Niranjana <niranjana.y60@wipro.com>
Change-Id: I768b4cf785dacc865b0312f5c2ccfdccf2e32a14

src/main/java/org/onap/dcaegen2/services/sonhms/PmNotificationHandler.java
src/main/java/org/onap/dcaegen2/services/sonhms/dmaap/PolicyNotificationCallback.java
src/main/java/org/onap/dcaegen2/services/sonhms/model/PolicyNotification.java

index b9ab254..5b7a58f 100644 (file)
@@ -223,9 +223,6 @@ public class PmNotificationHandler {
             log.info("Policy Notification: {}", notification);
             Boolean result = policyDmaapClient.sendNotificationToPolicy(notification);
             log.info("send notification to policy result {} ", result);
-            // getting policy response
-            policyDmaapClient.handlePolicyResponse(requestId);
-            log.info("handled policy response");
 
         } catch (Exception e) {
             log.error("Exception in sending Anr update to policy ", e);
index 82e940d..ad2baf5 100644 (file)
@@ -45,8 +45,9 @@ public class PolicyNotificationCallback extends NotificationCallback {
        }
 
        private void handlePolicyNotification(String msg) {
+                log.info("Message received from policy: " +msg);
                PciUpdateRepository pciUpdateRepository = BeanUtil.getBean(PciUpdateRepository.class);
-        Configuration configuration = Configuration.getInstance();
+                Configuration configuration = Configuration.getInstance();
                try {
                        ObjectMapper mapper = new ObjectMapper();
                        PolicyNotification policyResponse = mapper.readValue(msg, PolicyNotification.class);
@@ -82,8 +83,8 @@ public class PolicyNotificationCallback extends NotificationCallback {
                                String statusToString = Integer.toString(status);
                                log.info("Handled response from policy, status code {}", statusToString);
                        }
-               } catch (IOException e) {
-                       log.info("caught io exception while fetching policy response");
+               } catch (Exception e) {
+                       log.info("caught exception while fetching policy response:" + e);
 
                }
        }
index 2cb1335..8766dff 100644 (file)
@@ -80,6 +80,8 @@ public class PolicyNotification {
         aai.put("generic-vnf.is-closed-loop-disabled", "false");
         aai.put("generic-vnf.prov-status", "ACTIVE");
         aai.put("pnf.pnf-name", pnfName);
+        this.policyName = "PCI";
+        this.policyVersion = "1.0.2";
     }
 
     public long getClosedLoopAlarmStart() {