added spring subsystem implementation.
[utils] / system / spring / src / test / resources / test.org.wamblee.system.springWithRequirements.xml
diff --git a/system/spring/src/test/resources/test.org.wamblee.system.springWithRequirements.xml b/system/spring/src/test/resources/test.org.wamblee.system.springWithRequirements.xml
new file mode 100644 (file)
index 0000000..a2f60d8
--- /dev/null
@@ -0,0 +1,13 @@
+<?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-2.5.xsd">
+
+    <bean id="blaService" class="org.wamblee.system.spring.BlaService" destroy-method="stop">
+        <constructor-arg>
+            <ref bean="helloService"/>
+        </constructor-arg>
+    </bean>
+
+</beans>