aboutsummaryrefslogtreecommitdiffstats
path: root/sli/provider/src/main/resources/org/opendaylight/blueprint/sli-blueprint.xml
blob: d88cf3312f24266b8c5a9e57f03154dcd7ef81d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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.SvcLogicPropertiesProviderImpl" />
    <reference id="dblibService" interface="org.onap.ccsdk.sli.core.dblib.DbLibService" />
    <bean id="svcLogicClassResolver" class="org.onap.ccsdk.sli.core.sli.provider.SvcLogicClassResolver" />

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

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

</blueprint>