]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.equinox/META-INF/spring/manager.xml
[maven-release-plugin] copy for tag argeo-slc-0.14.0
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.equinox / META-INF / spring / manager.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org> Licensed under
3 the Apache License, Version 2.0 (the "License"); you may not use this file
4 except in compliance with the License. You may obtain a copy of the License
5 at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable
6 law or agreed to in writing, software distributed under the License is distributed
7 on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
8 express or implied. See the License for the specific language governing permissions
9 and limitations under the License. -->
10
11 <beans xmlns="http://www.springframework.org/schema/beans"
12 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
13 xmlns:aop="http://www.springframework.org/schema/aop"
14 xsi:schemaLocation="
15 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
16 http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd
17 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
18
19 <bean
20 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
21 <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
22 <property name="ignoreUnresolvablePlaceholders" value="false" />
23 <property name="locations">
24 <value>osgibundle:equinox.properties
25 </value>
26 </property>
27 </bean>
28
29 <bean id="commandProvider" class="org.argeo.slc.equinox.ExecutionCommandProvider">
30 <property name="modulesManager" ref="modulesManager" />
31 </bean>
32
33 <bean id="bundlesManager" class="org.argeo.slc.osgi.BundlesManager">
34 <property name="defaultTimeout" value="${slc.equinox.commandTimeout}" />
35 <property name="pollingPeriod" value="${slc.equinox.commandPollingPeriod}" />
36 </bean>
37
38 <bean id="modulesManager" class="org.argeo.slc.osgi.OsgiExecutionModulesManager">
39 <property name="bundlesManager" ref="bundlesManager" />
40 </bean>
41
42 </beans>