]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/resources/org/argeo/slc/core/execution/spring.xml
5d684fb399f6752b5f131b13e83f4d19b8113a91
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / resources / org / argeo / slc / core / execution / spring.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 class="org.springframework.beans.factory.config.CustomScopeConfigurer">
11 <property name="scopes">
12 <map>
13 <entry key="execution">
14 <bean class="org.argeo.slc.core.execution.ExecutionScope" />
15 </entry>
16 </map>
17 </property>
18 </bean>
19
20 <bean
21 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" />
22
23 <bean class="org.argeo.slc.core.execution.ExecutionParameterPostProcessor" />
24 <bean class="org.argeo.slc.core.execution.InstantiationPostProcessor" />
25 <bean class="org.argeo.slc.core.execution.Executor" />
26 <bean class="org.argeo.slc.core.execution.ExecutionAspect"/>
27
28 <aop:aspectj-autoproxy />
29
30 </beans>