From 4c5740094a9e7f84b72e79f691a34babbf6be344 Mon Sep 17 00:00:00 2001 From: ToineSiebelink Date: Thu, 24 Aug 2023 10:29:34 +0100 Subject: Extend model loader to support model-upgrade (part 1) - refactor existign code for easier extension (no code changes yet, just want to review refactor in this first patch...) - changed log level of some (error) logging Issue-ID: CPS-1804 Signed-off-by: ToineSiebelink Change-Id: I234ad6c4057e9447cd39a83b8f48799918ca6b7f --- .../src/main/resources/model/subscription.yang | 57 ---------------------- 1 file changed, 57 deletions(-) delete mode 100644 cps-ncmp-service/src/main/resources/model/subscription.yang (limited to 'cps-ncmp-service/src/main/resources/model') diff --git a/cps-ncmp-service/src/main/resources/model/subscription.yang b/cps-ncmp-service/src/main/resources/model/subscription.yang deleted file mode 100644 index 7096c18ab..000000000 --- a/cps-ncmp-service/src/main/resources/model/subscription.yang +++ /dev/null @@ -1,57 +0,0 @@ -module subscription { - yang-version 1.1; - namespace "org:onap:ncmp:subscription"; - - prefix subs; - - revision "2023-03-21" { - description - "NCMP subscription model"; - } - - container subscription-registry { - list subscription { - key "clientID subscriptionName"; - - leaf clientID { - type string; - } - - leaf subscriptionName { - type string; - } - - leaf topic { - type string; - } - - leaf isTagged { - type boolean; - } - - container predicates { - - list targetCmHandles { - key "cmHandleId"; - - leaf cmHandleId { - type string; - } - - leaf status { - type string; - } - - leaf details { - type string; - } - } - - leaf datastore { - type string; - } - } - - } - } -} \ No newline at end of file -- cgit 1.2.3-korg