diff options
author | Sandeep Shah <sandeep.shah2@techmahindra.com> | 2019-04-10 11:34:16 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-04-10 21:36:50 +0000 |
commit | 6c64ce6d8be0d03ddc9d940cc5caeb7000b1f390 (patch) | |
tree | 8b5eee4326ce5683c3480267b1b02a4ec808aeaa /platform-logic/restapi-templates/src/main | |
parent | ede33b1a140b56b2fd225c7298122329f650f537 (diff) |
Service Logic (DG/Templates) for SDNR OOF PCI POC3.0.2-ONAP0.3.4
DG's, templates, property files to support service logic for SDNR OOF
PCI POC use case. Also includes the required changes to POM files to
appropriately copy the above artifacts to docker-state folder in
respective sub-folders.
Change-Id: I9b16c798bcc9ba3a28d5a99f4c3d1562f5ed0468
Issue-ID: CCSDK-1204
Signed-off-by: SandeepLinux <sandeep.shah2@techmahindra.com>
Diffstat (limited to 'platform-logic/restapi-templates/src/main')
4 files changed, 57 insertions, 0 deletions
diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-addNeighbor.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-addNeighbor.json new file mode 100644 index 00000000..daa7bfaf --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-addNeighbor.json @@ -0,0 +1,11 @@ +{ + "lte-ran-neighbor-list-in-use-lte-cell": [ + { + "plmnid": ${tmp.plmnid}, + "cid": ${tmp.cid}, + "blacklisted": ${tmp.blacklisted}, + "phy-cell-id": ${tmp.phy-cell-id}, + "pnf-name": ${tmp.pnf-name} + } + ] +} diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-deleteNeighbor.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-deleteNeighbor.json new file mode 100644 index 00000000..5ac5f72a --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-deleteNeighbor.json @@ -0,0 +1,8 @@ +{ + "lte-ran-neighbor-list-in-use-lte-cell": [ + { + "plmnid": ${tmp.plmnid}, + "cid": ${tmp.cid} + } + ] +} diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-generic-neighbor-patch.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-generic-neighbor-patch.json new file mode 100644 index 00000000..b3b4643b --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-generic-neighbor-patch.json @@ -0,0 +1,24 @@ +{ + "ietf-yang-patch:yang-patch": { + "patch-id": "Patch 2", + "comment": "patch for configuring neighbor ", + "edit": [ + { + "edit-id": "patch blacklisted", + "operation": "merge", + "target": "/oofpcipoc:blacklisted", + "value": { + "blacklisted": ${tmp.blacklisted} + } + }, + { + "edit-id": "patch phy-cell-id", + "operation": "merge", + "target": "/oofpcipoc:phy-cell-id", + "value": { + "phy-cell-id": ${tmp.phy-cell-id} + } + } + ] + } +} diff --git a/platform-logic/restapi-templates/src/main/json/oofpcipoc-pci-patch.json b/platform-logic/restapi-templates/src/main/json/oofpcipoc-pci-patch.json new file mode 100644 index 00000000..9ab74fde --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/oofpcipoc-pci-patch.json @@ -0,0 +1,14 @@ +{ + "ietf-yang-patch:yang-patch": { + "patch-id": "Patch 1", + "comment": "patch for phy-cell-id-in-use for a cell", + "edit": [{ + "edit-id": "edit", + "operation": "merge", + "target": ${prop.oofpcipoc.patch.pci.target}, + "value": { + "phy-cell-id-in-use": ${tmp.phy-cell-id-in-use} + } + }] + } +} |