summaryrefslogtreecommitdiffstats
path: root/sli/provider/src/main/resources/org/opendaylight/blueprint/sli-blueprint.xml
blob: 82905742647b7b9c61bb528478c55966c4ee5a8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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">

    <bean id="propProvider" class="org.onap.ccsdk.sli.core.sli.provider.SvcLogicPropertiesProvider" />
    <reference id="dblibService" interface="org.onap.ccsdk.sli.core.dblib.DbLibService" />

    <bean id="svcLogicService" class="org.onap.ccsdk.sli.core.sli.provider.SvcLogicServiceImpl">
        <argument ref="propProvider" />
        <argument ref="dblibService"/>
    </bean>


    <service ref="svcLogicService">
        <interfaces>
            <value>org.onap.ccsdk.sli.core.sli.provider.SvcLogicService</value>
        </interfaces>
    </service>

</blueprint>