]> git.argeo.org Git - gpl/argeo-suite.git/blob - spring/maintenance-services.xml
Prepare next development cycle
[gpl/argeo-suite.git] / spring / maintenance-services.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:util="http://www.springframework.org/schema/util" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
5 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd">
6
7
8 <bean id="resourcesMaintenanceService"
9 class="org.argeo.connect.resources.core.ResourcesMaintenanceService" />
10
11 <bean id="activitiesMaintenanceService"
12 class="org.argeo.connect.activities.core.ActivitiesMaintenanceService" />
13
14 <bean id="peopleMaintenanceService" class="org.argeo.connect.people.core.PeopleMaintenanceService" />
15
16 <bean id="trackerMaintenanceService"
17 class="org.argeo.connect.tracker.core.TrackerMaintenanceService" />
18
19 <!-- There is no maintenance Service for the Documents App yet -->
20 <!-- Order is important -->
21 <util:list id="knownMaintenanceServices">
22 <ref bean="resourcesMaintenanceService" />
23 <ref bean="activitiesMaintenanceService" />
24 <ref bean="peopleMaintenanceService" />
25 <ref bean="trackerMaintenanceService" />
26 </util:list>
27
28 <!-- Make the DJ-aying between the various known Apps Maintenance -->
29 <bean id="suiteMaintenanceService" class="org.argeo.suite.core.DefaultSuiteMaintenanceService"
30 init-method="init" destroy-method="destroy">
31 <property name="repository" ref="repository" />
32 <property name="workspaceName" value="main" />
33 <property name="maintenanceServices" ref="knownMaintenanceServices" />
34 </bean>
35
36 <!-- Execute initialization with a system authentication -->
37 <bean
38 class="org.argeo.cms.spring.AuthenticatedApplicationContextInitialization" />
39 </beans>