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

    <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.0.0">
        <command name="dblib/encode">
            <action class="org.onap.ccsdk.sli.core.dblib.EncShellCommand"/>
        </command>
    </command-bundle>

</blueprint>