]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.executionflow/src/slc/conf/main.xml
Introduce aspects and execution parameters
[gpl/argeo-slc.git] / sandbox / argeo.slc.executionflow / src / slc / 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 <import resource="testCases/basic-001.xml" />
11 <import resource="testCases/basic-002.xml" />
12
13 <bean id="main" class="org.argeo.slc.executionflow.SimpleExecutionFlow">
14 <property name="executables">
15 <list>
16 <ref bean="basic.001" />
17 <ref bean="basic.001" />
18 <ref bean="basic.002" />
19 </list>
20 </property>
21 </bean>
22
23 <bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">
24 <property name="scopes">
25 <map>
26 <entry key="execution">
27 <bean class="org.argeo.slc.executionflow.ExecutionScope" />
28 </entry>
29 </map>
30 </property>
31 </bean>
32
33 <bean
34 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" />
35 <bean class="org.argeo.slc.executionflow.ExecutionParameterPostProcessor" />
36
37 <bean class="org.argeo.slc.executionflow.ExecutionAspect"></bean>
38 <aop:aspectj-autoproxy />
39
40 </beans>