]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/test/resources/org/argeo/slc/core/execution/applicationContext.xml
ExecutionContext transformed to interface; mapping from ExecutionContexts to Threads...
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / test / resources / org / argeo / slc / core / execution / applicationContext.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns:aop="http://www.springframework.org/schema/aop"
5 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
6 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
7
8 <import resource="imports.xml" />
9
10 <bean id="executionModule_1" class="org.argeo.slc.core.execution.SimpleSpringExecutionModule" >
11 <property name="executionContext">
12 <ref bean="executionContext" />
13 </property>
14 <property name="name" value="dummyname" />
15 <property name="version" value="dummyversion" />
16 </bean>
17
18 <bean id="main" parent="slcTemplate.simpleFlow">
19 <property name="executionSpec">
20 <bean parent="slcTemplate.simpleSpec">
21 <property name="attributes">
22 <map>
23 <entry key="testKey">
24 <bean parent="specAttr.primitive" p:value="660" />
25 </entry>
26 </map>
27 </property>
28 </bean>
29 </property>
30 <property name="executables">
31 <list>
32 <ref local="echo1" />
33 </list>
34 </property>
35 </bean>
36
37 <bean id="echo1" parent="task.echo" scope="execution">
38 <property name="message"
39 value="From main! @{testKey}" />
40 <aop:scoped-proxy />
41 </bean>
42
43 </beans>