aboutsummaryrefslogtreecommitdiffstats
path: root/dblib/provider/src/main/resources/org/opendaylight/blueprint/dblib-blueprint.xml
blob: f1d5166dbaaa9f00314ff47724b9ef0e066fcb00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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="provider" class="org.onap.ccsdk.sli.core.dblib.DBLIBResourceProvider" />

    <bean id="dbResourceManager" class="org.onap.ccsdk.sli.core.dblib.DBResourceManager">
        <argument ref="provider" />
    </bean>
    <service ref="dbResourceManager">
        <interfaces>
            <value>javax.sql.DataSource</value>
            <value>org.onap.ccsdk.sli.core.dblib.DbLibService</value>
        </interfaces>
    </service>

</blueprint>