]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/src/test/resources/org/argeo/slc/ant/acOverride.xml
Introduce org.argeo.slc.lib.detached
[gpl/argeo-slc.git] / runtime / org.argeo.slc.launcher / src / test / resources / org / argeo / slc / ant / acOverride.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
5
6
7 <bean id="dummy1" parent="template.dummy" scope="prototype">
8 <property name="name" value="dummy1" />
9 <property name="other" ref="dummy2" />
10 <property name="children">
11 <list>
12 <ref bean="dummy2" />
13 <ref bean="dummy3" />
14 </list>
15 </property>
16 <property name="map">
17 <map>
18 <entry key="key1">
19 <ref bean="dummy2" />
20 </entry>
21 <entry key="key2">
22 <ref bean="dummy3" />
23 </entry>
24 </map>
25 </property>
26 </bean>
27
28 <bean id="dummy2" parent="template.dummy" scope="prototype">
29 <property name="name" value="dummy2" />
30 </bean>
31
32 <bean id="dummy3" parent="template.dummy" scope="prototype">
33 <property name="name" value="dummy3" />
34 </bean>
35
36 <!-- Templates -->
37 <bean id="template.dummy" class="org.argeo.slc.ant.DummyObject"
38 abstract="true">
39 </bean>
40
41
42
43 </beans>