diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2023-04-20 08:48:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-04-20 08:48:32 +0000 |
commit | 5f68d54d9f3af043d7f87d9a0b3a5f2de6f06dc5 (patch) | |
tree | f750347b467c3097ed6a062833850eff3aad17c0 /src/main/java | |
parent | 3c6ab2322d81d98a26e697cecdb5c4d6da548e81 (diff) | |
parent | fff80c048f90ad6b58a00329e514f0c2e5c41dd5 (diff) |
Merge "Define an interface to accept collection of cm handles for Get operation."
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/org/onap/cps/ncmp/dmi/rest/controller/DmiRestController.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/org/onap/cps/ncmp/dmi/rest/controller/DmiRestController.java b/src/main/java/org/onap/cps/ncmp/dmi/rest/controller/DmiRestController.java index f952e224..da0ac3e1 100644 --- a/src/main/java/org/onap/cps/ncmp/dmi/rest/controller/DmiRestController.java +++ b/src/main/java/org/onap/cps/ncmp/dmi/rest/controller/DmiRestController.java @@ -105,6 +105,21 @@ public class DmiRestController implements DmiPluginApi, DmiPluginInternalApi { } /** + * This method is not implemented for ONAP DMI plugin. + * + * @param datastoreName name of the data store + * @param body list of cm-handles + * @param topic Kafka topic name + * @return (@ code ResponseEntity) response entity + */ + @Override + public ResponseEntity<Void> getResourceDataByCmHandles(final String datastoreName, + final Object body, + final String topic) { + return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED); + } + + /** * This method fetches the resource for given cm handle using pass through operational or running datastore. * It filters the response on the basis of options query parameters and returns response. Passthrough Running * supports both read and write operation whereas passthrough operational does not support write operations. |