diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-07-09 13:41:32 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-08-15 16:35:52 +0000 |
commit | 9e7f1417df26d634482f053be2cf39b920a22106 (patch) | |
tree | b9df0f8e5c2ab9148716911ff9de9e77d334da36 /grToolkit/provider/src/main | |
parent | 36b83bd4c1b5e20b23cc2986aca15ed31107c2a3 (diff) |
Code changes for Neon
Updated code via ccsdk/parent/tools/fluorine2neon.sh script.
Change-Id: Ice154214e118ca6ad5043eb0fe337095fd2246d9
Issue-ID: CCSDK-1389
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'grToolkit/provider/src/main')
-rwxr-xr-x | grToolkit/provider/src/main/resources/OSGI-INF/blueprint/GrToolkit.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/grToolkit/provider/src/main/resources/OSGI-INF/blueprint/GrToolkit.xml b/grToolkit/provider/src/main/resources/OSGI-INF/blueprint/GrToolkit.xml new file mode 100755 index 00000000..5a4492c5 --- /dev/null +++ b/grToolkit/provider/src/main/resources/OSGI-INF/blueprint/GrToolkit.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" + xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0" + odl:use-default-for-reference-types="true"> + + <reference id="dataBroker" + interface="org.opendaylight.controller.md.sal.binding.api.DataBroker" + odl:type="default" /> + + <reference id="notificationService" + interface="org.opendaylight.controller.md.sal.binding.api.NotificationPublishService" + odl:type="default" /> + + <reference id="rpcRegistry" + interface="org.opendaylight.controller.sal.binding.api.RpcProviderRegistry" + odl:type="default" /> + + <reference id="dbLib" + interface="org.onap.ccsdk.sli.core.dblib.DbLibService" /> + + <reference id="configDatastore" interface="org.opendaylight.controller.cluster.datastore.DistributedDataStoreInterface" + odl:type="distributed-config"/> + + <bean id="provider" class="org.onap.ccsdk.sli.plugins.grtoolkit.GrToolkitProvider"> + <argument ref="dataBroker" /> + <argument ref="notificationService" /> + <argument ref="rpcRegistry" /> + <argument ref="dbLib" /> + <argument ref="configDatastore" /> + </bean> + + <odl:rpc-implementation ref="provider"/> +</blueprint> |