TAPI topology creation for 100GE Transponder
[transportpce.git] / tapi / src / main / resources / org / opendaylight / blueprint / tapi-blueprint.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->\r
3 <!--\r
4 Copyright © 2018 Orange and others. All rights reserved.\r
5 \r
6 This program and the accompanying materials are made available under the\r
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
8 and is available at http://www.eclipse.org/legal/epl-v10.html\r
9 \r
10 Author: Gilles Thouenon <gilles.thouenon@orange.com>\r
11 -->\r
12 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"\r
13   xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"\r
14   odl:use-default-for-reference-types="true">\r
15 \r
16     <reference id="dataBroker"\r
17           interface="org.opendaylight.mdsal.binding.api.DataBroker"\r
18           odl:type="default" />\r
19 \r
20     <reference id="rpcProviderService"\r
21           interface="org.opendaylight.mdsal.binding.api.RpcProviderService"/>\r
22 \r
23     <reference id="serviceHandlerService"\r
24           interface="org.opendaylight.transportpce.servicehandler.service.ServiceHandlerOperations" />\r
25 \r
26     <bean id="tapiListener"\r
27           class="org.opendaylight.transportpce.tapi.utils.TapiListener">\r
28     </bean>\r
29 \r
30     <bean id="tapiProvider"\r
31           class="org.opendaylight.transportpce.tapi.impl.TapiProvider"\r
32           init-method="init" destroy-method="close">\r
33         <argument ref="dataBroker" />\r
34         <argument ref="rpcProviderService" />\r
35         <argument ref="serviceHandlerService" />\r
36         <argument ref="tapiListener" />\r
37     </bean>\r
38 \r
39 </blueprint>\r