93ba1cebff041cbe8a73e20025e850cbb8ef2fdd
[controller.git] / benchmark / ntfbenchmark / src / main / resources / org / opendaylight / blueprint / ntfbenchmark.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Inocybe Technologies Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
10            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
11            odl:use-default-for-reference-types="true">
12
13   <reference id="publishService" interface="org.opendaylight.controller.md.sal.binding.api.NotificationPublishService"/>
14   <reference id="listenerService" interface="org.opendaylight.controller.md.sal.binding.api.NotificationService"/>
15
16   <bean id="provider" class="ntfbenchmark.impl.NtfbenchmarkProvider"
17           init-method="init" destroy-method="close">
18     <argument ref="publishService"/>
19     <argument ref="listenerService"/>
20   </bean>
21
22   <odl:rpc-implementation ref="provider"/>
23 </blueprint>