]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/org/argeo/slc/core/execution/runtime.xml
Remove runner servlet
[gpl/argeo-slc.git] / org.argeo.slc.core / src / org / argeo / slc / core / execution / runtime.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (C) 2007-2012 Argeo GmbH Licensed under the Apache License,
3 Version 2.0 (the "License"); you may not use this file except in compliance
4 with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
5 Unless required by applicable law or agreed to in writing, software distributed
6 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
7 OR CONDITIONS OF ANY KIND, either express or implied. See the License for
8 the specific language governing permissions and limitations under the License. -->
9 <!-- Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org> Licensed under
10 the Apache License, Version 2.0 (the "License"); you may not use this file
11 except in compliance with the License. You may obtain a copy of the License
12 at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable
13 law or agreed to in writing, software distributed under the License is distributed
14 on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
15 express or implied. See the License for the specific language governing permissions
16 and limitations under the License. -->
17
18 <beans xmlns="http://www.springframework.org/schema/beans"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
20 xmlns:aop="http://www.springframework.org/schema/aop"
21 xsi:schemaLocation="
22 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
23 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
24
25 <description>Bare minimal runtime configuration. In general you will
26 want to use simple.xml instead.
27 </description>
28
29 <bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">
30 <property name="scopes">
31 <map>
32 <entry key="execution">
33 <bean class="org.argeo.slc.core.execution.ExecutionScope" />
34 </entry>
35 </map>
36 </property>
37 </bean>
38
39
40 <bean id="executionStack" class="org.argeo.slc.core.execution.DefaultExecutionStack"
41 scope="execution">
42 <aop:scoped-proxy proxy-target-class="false" />
43 </bean>
44
45 <bean id="instantiationManager" class="org.argeo.slc.core.execution.InstantiationManager" />
46
47 <bean class="org.argeo.slc.core.execution.ExecutionParameterPostProcessor">
48 <property name="executionContext" ref="executionContext" />
49 <property name="instantiationManager" ref="instantiationManager" />
50 </bean>
51
52 <!-- <bean class="org.argeo.slc.core.execution.ExecutionAspect"> -->
53 <!-- <property name="executionStack" ref="executionStack" /> -->
54 <!-- <property name="executionContext" ref="executionContext" /> -->
55 <!-- </bean> -->
56
57 <aop:aspectj-autoproxy />
58
59 </beans>