blob: 9afe0b45809379487d75ce4a66873c9b8d9a0aa6 [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" xmlns:osgi="http://www.springframework.org/schema/osgi"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi.xsd">
<osgi:service ref="service">
<osgi:interfaces>
<value>java.io.Serializable</value>
<value>java.lang.Appendable</value>
</osgi:interfaces>
<osgi:service-properties>
<entry key="foo" value="bar"/>
<entry key="boo" value="baz"/>
</osgi:service-properties>
</osgi:service>
<bean id="service" class="java.lang.StringBuffer" />
</beans>