diff options
author | Priyank Maheshwari <priyank.maheshwari@est.tech> | 2024-11-29 10:28:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-11-29 10:28:06 +0000 |
commit | a27a62c1ca4f87d126cb5e40cc797aed9aa590db (patch) | |
tree | 3fdcba0ecc089065040ed54db84d12b9586dcfef /cps-service/src/main/java/org | |
parent | b97d522cb3d08b596241aea88aafe3bd08b4ef77 (diff) | |
parent | dfcc95236daf7d45687fa42446a7d236ac12637e (diff) |
Merge "XML content support on Replace list content"
Diffstat (limited to 'cps-service/src/main/java/org')
-rw-r--r-- | cps-service/src/main/java/org/onap/cps/api/CpsDataService.java | 7 | ||||
-rw-r--r-- | cps-service/src/main/java/org/onap/cps/api/impl/CpsDataServiceImpl.java | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/cps-service/src/main/java/org/onap/cps/api/CpsDataService.java b/cps-service/src/main/java/org/onap/cps/api/CpsDataService.java index b3eff8eb26..29c8ad0168 100644 --- a/cps-service/src/main/java/org/onap/cps/api/CpsDataService.java +++ b/cps-service/src/main/java/org/onap/cps/api/CpsDataService.java @@ -172,11 +172,12 @@ public interface CpsDataService { * @param dataspaceName dataspace name * @param anchorName anchor name * @param parentNodeXpath parent node xpath - * @param jsonData json data representing the new list elements + * @param nodeData node data representing the new list elements * @param observedTimestamp observedTimestamp + * @param contentType JSON/XML content type */ - void replaceListContent(String dataspaceName, String anchorName, String parentNodeXpath, String jsonData, - OffsetDateTime observedTimestamp); + void replaceListContent(String dataspaceName, String anchorName, String parentNodeXpath, String nodeData, + OffsetDateTime observedTimestamp, ContentType contentType); /** * Replaces list content by removing all existing elements and inserting the given new elements as data nodes diff --git a/cps-service/src/main/java/org/onap/cps/api/impl/CpsDataServiceImpl.java b/cps-service/src/main/java/org/onap/cps/api/impl/CpsDataServiceImpl.java index b1b545be68..a63b3e5360 100644 --- a/cps-service/src/main/java/org/onap/cps/api/impl/CpsDataServiceImpl.java +++ b/cps-service/src/main/java/org/onap/cps/api/impl/CpsDataServiceImpl.java @@ -281,11 +281,11 @@ public class CpsDataServiceImpl implements CpsDataService { @Timed(value = "cps.data.service.list.update", description = "Time taken to update a list") public void replaceListContent(final String dataspaceName, final String anchorName, final String parentNodeXpath, - final String jsonData, final OffsetDateTime observedTimestamp) { + final String nodeData, final OffsetDateTime observedTimestamp, final ContentType contentType) { cpsValidator.validateNameCharacters(dataspaceName, anchorName); final Anchor anchor = cpsAnchorService.getAnchor(dataspaceName, anchorName); final Collection<DataNode> newListElements = - buildDataNodesWithParentNodeXpath(anchor, parentNodeXpath, jsonData, ContentType.JSON); + buildDataNodesWithParentNodeXpath(anchor, parentNodeXpath, nodeData, contentType); replaceListContent(dataspaceName, anchorName, parentNodeXpath, newListElements, observedTimestamp); } |