]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/site/org.argeo.slc.demo.basic/conf/main.xml
Integrate demo in web
[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="executionModule" class="org.argeo.slc.osgi.OsgiExecutionModule" />
11
12 <bean id="main" parent="slcTemplate.simpleFlow">
13 <property name="executionSpec">
14 <bean parent="slcTemplate.simpleSpec">
15 <property name="attributes">
16 <map>
17 <entry key="testKey">
18 <bean parent="specAttr.primitive" p:value="660" />
19 </entry>
20 </map>
21 </property>
22 </bean>
23 </property>
24 <property name="executables">
25 <list>
26 <ref local="echo1" />
27 <ref bean="basic.001" />
28 <ref bean="basic.001" />
29 <ref bean="basic.002" />
30 <ref bean="canonic.001" />
31 <ref bean="canonic.002" />
32 </list>
33 </property>
34 </bean>
35
36 <bean id="echo1" parent="task.echo" scope="execution">
37 <property name="message"
38 value="From main! @{testKey}, slc.flows=@{slc.flows}" />
39 <aop:scoped-proxy />
40 </bean>
41 </beans>