diff options
author | mpriyank <priyank.maheshwari@est.tech> | 2023-08-08 15:27:18 +0100 |
---|---|---|
committer | Priyank Maheshwari <priyank.maheshwari@est.tech> | 2023-08-09 14:40:31 +0000 |
commit | 2fe802a8bdda1e628c4558f9079439893e7bd52e (patch) | |
tree | e34309179a2bc5098b5fc9240943a4f3a8e842f1 /cps-ncmp-service/src/test/resources/cmSubscriptionDmiOutEvent.json | |
parent | c38ada1f4b44cf5dcc9f8cc4fb49cd9a8568a774 (diff) |
Refactoring Subscription Create LCM use case
- Client to NCMP: CmSubscriptionNcmpInEvent
- NCMP to DMI: CmSubscriptionDmiInEvent
- DMI to NCMP: CmSubscriptionDmiOutEvent
- NCMP to Client: CmSubscriptionNcmpOutEvent
- code package changed from avcsubscription to cmsubscription
- Other classes name as per the events naming above
- Test classes refactored
- NO LOGIC changes incorporated in this patch
Issue-ID: CPS-1831
Change-Id: Id5ad5f799007deaaf6d6fc0f402c130339263d09
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
Diffstat (limited to 'cps-ncmp-service/src/test/resources/cmSubscriptionDmiOutEvent.json')
-rw-r--r-- | cps-ncmp-service/src/test/resources/cmSubscriptionDmiOutEvent.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/cps-ncmp-service/src/test/resources/cmSubscriptionDmiOutEvent.json b/cps-ncmp-service/src/test/resources/cmSubscriptionDmiOutEvent.json new file mode 100644 index 0000000000..dfe8f50466 --- /dev/null +++ b/cps-ncmp-service/src/test/resources/cmSubscriptionDmiOutEvent.json @@ -0,0 +1,29 @@ +{ + "data": { + "clientId": "SCO-9989752", + "subscriptionName": "cm-subscription-001", + "dmiName": "dminame1", + "subscriptionStatus": [ + { + "id": "CMHandle1", + "status": "REJECTED", + "details": "Some error message from the DMI" + }, + { + "id": "CMHandle2", + "status": "REJECTED", + "details": "Some other error message from the DMI" + }, + { + "id": "CMHandle3", + "status": "PENDING", + "details": "No reply from DMI yet" + }, + { + "id": "CMHandle4", + "status": "PENDING", + "details": "No reply from DMI yet" + } + ] + } +}
\ No newline at end of file |