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