]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/site/org.argeo.slc.demo.basic/conf/main.xml
Improve MANIFEST formatting
[gpl/argeo-slc.git] / demo / site / org.argeo.slc.demo.basic / conf / main.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" xmlns:p="http://www.springframework.org/schema/p"
4 xmlns:aop="http://www.springframework.org/schema/aop"
5 xsi:schemaLocation="
6 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7 http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd
8 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
9
10 <bean id="main" parent="slcTemplate.simpleFlow">
11 <constructor-arg>
12 <bean parent="slcTemplate.simpleSpec">
13 <property name="attributes">
14 <map>
15 <entry key="testKey">
16 <bean parent="specAttr.primitive" p:value="660" />
17 </entry>
18 </map>
19 </property>
20 </bean>
21 </constructor-arg>
22 <property name="executables">
23 <list>
24 <ref local="echo1" />
25 <ref bean="basic.001" />
26 <ref bean="basic.001" />
27 <ref bean="basic.002" />
28 <ref bean="canonic.001" />
29 <ref bean="canonic.002" />
30 </list>
31 </property>
32 </bean>
33
34 <bean id="noArg" parent="slcTemplate.simpleFlow">
35 <property name="executables">
36 <list>
37 <bean parent="task.echo">
38 <property name="message" value="No rg!" />
39 </bean>
40 </list>
41 </property>
42 </bean>
43
44 <bean id="echo1" parent="task.echo" scope="execution">
45 <property name="message" value="From main! @{testKey}" />
46 <aop:scoped-proxy />
47 </bean>
48 </beans>