]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/resources/org/argeo/slc/core/execution/simple.xml
FlowNamespace extended (flows in flows, param in arg)
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / resources / org / argeo / slc / core / execution / simple.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 <description>Default Capabilities</description>
11
12 <import resource="runtime.xml" />
13
14 <bean id="executionContext" class="org.argeo.slc.core.execution.MapExecutionContext"
15 scope="execution">
16 <aop:scoped-proxy proxy-target-class="false" />
17 </bean>
18
19 <bean id="executionFlowDescriptorConverter"
20 class="org.argeo.slc.core.execution.DefaultExecutionFlowDescriptorConverter"></bean>
21
22 <bean
23 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
24 <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
25 <property name="ignoreUnresolvablePlaceholders" value="true" />
26 </bean>
27
28 <bean id="parameterRef" class="org.argeo.slc.core.execution.ParameterRef"
29 abstract="true">
30 <property name="instantiationManager" ref="instantiationManager" />
31 </bean>
32 <!--
33 <bean id="parameterRef" factory-bean="instantiationManager"
34 factory-method="createRef" abstract="true" />
35 -->
36 </beans>