From 4f3fe21aa98a196ef1ddd62e1ac84a6c2e4c13cf Mon Sep 17 00:00:00 2001 From: jh7358 Date: Wed, 16 Oct 2019 11:51:46 -0400 Subject: Generate notifications when policies change Updated existing PAP code to make use of new notification classes. Change-Id: I4637ad92ac4f432f215cfc837e672c75074d88b5 Issue-ID: POLICY-1841 Signed-off-by: Jim Hahn --- .../simpleDeploy/createGroupsDelPolicy.json | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 main/src/test/resources/simpleDeploy/createGroupsDelPolicy.json (limited to 'main/src/test/resources/simpleDeploy/createGroupsDelPolicy.json') diff --git a/main/src/test/resources/simpleDeploy/createGroupsDelPolicy.json b/main/src/test/resources/simpleDeploy/createGroupsDelPolicy.json new file mode 100644 index 00000000..8972997a --- /dev/null +++ b/main/src/test/resources/simpleDeploy/createGroupsDelPolicy.json @@ -0,0 +1,43 @@ +{ + "groups": [ + { + "name": "groupA", + "version": "200.2.3", + "description": "my description", + "pdpGroupState": "ACTIVE", + "properties": { + "hello": "world" + }, + "pdpSubgroups": [ + { + "pdpType": "pdpTypeA", + "desiredInstanceCount": 1, + "properties": { + "abc": "def" + }, + "supportedPolicyTypes": [ + { + "name": "typeA", + "version": "100.2.3" + } + ], + "pdpInstances": [ + { + "instanceId": "pdpA" + } + ], + "policies": [ + { + "name": "policyA", + "version": "1.2.3" + }, + { + "name": "ToBeDeleted", + "version": "1.2.3" + } + ] + } + ] + } + ] +} -- cgit 1.2.3-korg