Fix SonarQube Violations 86/117586/2
authorRishi.Chail <rishi.chail@est.tech>
Sun, 24 Jan 2021 03:50:20 +0000 (03:50 +0000)
committerRishi.Chail <rishi.chail@est.tech>
Sun, 24 Jan 2021 05:28:12 +0000 (05:28 +0000)
Issue-ID: CPS-89

Signed-off-by: Rishi.Chail <rishi.chail@est.tech>
Change-Id: I72e734929b464072e23b08a1e213b5fac31ff710

cps-service/src/main/java/org/onap/cps/api/impl/CpsDataServiceImpl.java [changed mode: 0644->0755]
cps-service/src/main/java/org/onap/cps/utils/YangUtils.java [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 26990de..d7d25b9
@@ -54,7 +54,7 @@ public class CpsDataServiceImpl implements CpsDataService {
     public void saveData(final String dataspaceName, final String anchorName, final String jsonData) {
         final Anchor anchor = cpsAdminService.getAnchor(dataspaceName, anchorName);
         final SchemaContext schemaContext = getSchemaContext(dataspaceName, anchor.getSchemaSetName());
-        final NormalizedNode normalizedNode = YangUtils.parseJsonData(jsonData, schemaContext);
+        final NormalizedNode<?, ?> normalizedNode = YangUtils.parseJsonData(jsonData, schemaContext);
         final DataNode dataNode = new DataNodeBuilder().withNormalizedNodeTree(normalizedNode).build();
         cpsDataPersistenceService.storeDataNode(dataspaceName, anchor.getName(), dataNode);
     }
old mode 100644 (file)
new mode 100755 (executable)
index 1ba9432..389b896
@@ -53,7 +53,7 @@ public class YangUtils {
      * @param schemaContext the SchemaContext for the given data
      * @return the NormalizedNode representing the json data
      */
-    public static NormalizedNode parseJsonData(final String jsonData, final SchemaContext schemaContext) {
+    public static NormalizedNode<?, ?> parseJsonData(final String jsonData, final SchemaContext schemaContext) {
         final JSONCodecFactory jsonCodecFactory = JSONCodecFactorySupplier.DRAFT_LHOTKA_NETMOD_YANG_JSON_02
                 .getShared(schemaContext);
         final NormalizedNodeResult normalizedNodeResult = new NormalizedNodeResult();