Do not use odl:type for DataBroker
[aaa.git] / aaa-encrypt-service / impl / src / main / resources / OSGI-INF / blueprint / encryptservice.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
3                  xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0">
4
5   <reference id="dataBroker" interface="org.opendaylight.mdsal.binding.api.DataBroker"/>
6
7   <odl:clustered-app-config id="encryptConfig" default-config-file-name="aaa-encrypt-service-config.xml"
8         binding-class="org.opendaylight.yang.gen.v1.config.aaa.authn.encrypt.service.config.rev160915.AaaEncryptServiceConfig">
9   </odl:clustered-app-config>
10
11   <bean id="encryptService" class="org.opendaylight.aaa.encrypt.impl.AAAEncryptionServiceImpl">
12     <argument ref="encryptConfig"/>
13     <argument ref="dataBroker"/>
14   </bean>
15
16   <service ref="encryptService" interface="org.opendaylight.aaa.encrypt.AAAEncryptionService"/>
17
18 </blueprint>