Implement framework to process REST notifications 99/11799/3
authorArun S. Yerra <arun.yerra@huawei.com>
Tue, 12 Sep 2017 01:57:40 +0000 (18:57 -0700)
committerArun S. Yerra <arun.yerra@huawei.com>
Mon, 18 Sep 2017 16:52:12 +0000 (09:52 -0700)
commit4318ad160fa6ee1d75c395f4409e209f5da36f53
tree3588490d70dfd3bd8b45bc8585e8d4ef6e238ebd
parent322886522453c65818199d3575e34d554d3b28ee
Implement framework to process REST notifications

Global SDNC controller needs information about network Devices
(mostly PNFs) so as to instantiate/configure service. Domain Controllers
control/manage the network devices within the fabric. This task
is to implement RESTCONF notification processing framework, so that
Global SDNC controller can process notifications from Domain controllers.

Change-Id: Ia5edb5006ac3fd4ec71e55f92a05e79e40ce76d2
Issue-Id: CCSDK-88
Signed-off-by: Arun S. Yerra <arun.yerra@huawei.com>
17 files changed:
fabric-discovery-plugin/.gitignore [new file with mode: 0644]
fabric-discovery-plugin/features/pom.xml [new file with mode: 0755]
fabric-discovery-plugin/features/src/main/resources/features.xml [new file with mode: 0644]
fabric-discovery-plugin/installer/pom.xml [new file with mode: 0755]
fabric-discovery-plugin/installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0644]
fabric-discovery-plugin/installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0644]
fabric-discovery-plugin/installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
fabric-discovery-plugin/pom.xml [new file with mode: 0755]
fabric-discovery-plugin/provider/pom.xml [new file with mode: 0755]
fabric-discovery-plugin/provider/src/main/java/org/onap/ccsdk/sli/plugins/fabricdiscovery/ClientMessageCallback.java [new file with mode: 0644]
fabric-discovery-plugin/provider/src/main/java/org/onap/ccsdk/sli/plugins/fabricdiscovery/FabricDiscoveryPlugin.java [new file with mode: 0644]
fabric-discovery-plugin/provider/src/main/java/org/onap/ccsdk/sli/plugins/fabricdiscovery/IClientMessageCallback.java [new file with mode: 0644]
fabric-discovery-plugin/provider/src/main/java/org/onap/ccsdk/sli/plugins/fabricdiscovery/IFabricDiscoveryService.java [new file with mode: 0644]
fabric-discovery-plugin/provider/src/main/java/org/onap/ccsdk/sli/plugins/fabricdiscovery/WebSocketClient.java [new file with mode: 0644]
fabric-discovery-plugin/provider/src/main/java/org/onap/ccsdk/sli/plugins/fabricdiscovery/WebSocketClientHandler.java [new file with mode: 0644]
fabric-discovery-plugin/provider/src/main/resources/org/opendaylight/blueprint/fabricdiscoveryplugin-blueprint.xml [new file with mode: 0644]
pom.xml