blob: 213355e93bde332e8ba30506ad6985582e03831c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi.xsd"
xmlns:osgi="http://www.springframework.org/schema/osgi">
<osgi:service ref="dataSource" interface="javax.sql.DataSource"/>
<osgi:service ref="sqlCommandProvider" auto-export="all-classes">
<osgi:service-properties>
<entry key="osgi.command.scope">
<value>sql</value>
</entry>
<entry key="osgi.command.function">
<array value-type="java.lang.String">
<value>execute</value>
<value>queryForInt</value>
</array>
</entry>
</osgi:service-properties>
</osgi:service>
</beans>