Created constant to replace dup String literal 20/83220/1
authorJegadeesh Babu <jegabab1@in.ibm.com>
Mon, 25 Mar 2019 16:23:43 +0000 (21:53 +0530)
committerJegadeesh Babu <jegabab1@in.ibm.com>
Mon, 25 Mar 2019 16:23:57 +0000 (21:53 +0530)
Sonar fix

Issue-ID: APPC-1554
Change-Id: I8ff882baf26e765b9b8bcf23bcc37b11a3567ded
Signed-off-by: Jegadeesh Babu <jegabab1@in.ibm.com>
appc-outbound/appc-aai-client/provider/src/main/java/org/onap/appc/aai/client/aai/AaiService.java

index 3902f86..474ead8 100644 (file)
@@ -7,6 +7,7 @@
  * Copyright (C) 2017 Amdocs
  * ================================================================================
  * Modifications (C) 2019 Ericsson
+ * Modifications (C) 2019 IBM
  * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -71,6 +72,7 @@ public class AaiService {
     private static final String ATTR_VNFC_FUNC_CODE = "VNFC-FUNCTION-CODE";
     private static final String ATTR_VSERVER_NAME = "vserver-name";
     private static final String ATTR_VNF_ID = "vnf-id";
+    private static final String ATTR_VF_MODULE_ID = "vf-module-id";
 
     private AAIClient aaiClient;
 
@@ -256,7 +258,7 @@ public class AaiService {
 
             //ConfigScaleOut - Do not process vms that are not associated with vfmodule id if vfmodule id is present
             if (StringUtils.isNotBlank(vfModuleIdFromRequest)) {
-                String vmVfModuleId = ctx.getAttribute(aaiRefKey + "vf-module-id");
+                String vmVfModuleId = ctx.getAttribute(aaiRefKey + ATTR_VF_MODULE_ID);
                 log.info("insertVnfcs():::vfModule for vm is=" + vmVfModuleId);
                 if (StringUtils.isBlank(vmVfModuleId) || !StringUtils
                     .equalsIgnoreCase(vmVfModuleId, vfModuleIdFromRequest)) {
@@ -382,7 +384,7 @@ public class AaiService {
         vnfcParams.put("relationship-list.relationship[2].relationship-data[1].relationship-key",
             "vf-module.vf-module-id");
         vnfcParams.put("relationship-list.relationship[2].relationship-data[1].relationship-value",
-            ctx.getAttribute(aaiRefKey + "vf-module-id"));
+            ctx.getAttribute(aaiRefKey + ATTR_VF_MODULE_ID));
 
         return vnfcParams;
     }
@@ -510,7 +512,7 @@ public class AaiService {
             String ind = "tmp.vnfInfo.vm[" + i + "].";
             String aaiFuncCode = ctx.getAttribute(ind + "vnfc-function-code");
             String aaiGroupNotation = ctx.getAttribute(ind + "group-notation");
-            String aaiVfModuleId = ctx.getAttribute(ind + "vf-module-id");
+            String aaiVfModuleId = ctx.getAttribute(ind + ATTR_VF_MODULE_ID);
 
             log.info("getGroupNotationForExistigValue()::: vfModuleId=" + vfModuleId + ", aaiFuncCode=" + aaiFuncCode
                 + ", aaiGroupNotation=" + aaiGroupNotation + ",aaiVfMOduleId=" + aaiVfModuleId);