]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.suite.apps/META-INF/spring/workbench-services.xml
[maven-release-plugin] prepare release argeo-suite-0.1.8
[gpl/argeo-suite.git] / org.argeo.suite.apps / META-INF / spring / workbench-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 <bean id="resourcesWorkbenchService"
8 class="org.argeo.connect.resources.workbench.ResourcesWorkbenchService" />
9
10 <bean id="activitiesWorkbenchService"
11 class="org.argeo.activities.workbench.ActivitiesWorkbenchService" />
12
13 <bean id="peopleWorkbenchService"
14 class="org.argeo.people.workbench.rap.PeopleWorkbenchServiceImpl" />
15
16 <bean id="documentsWorkbenchService"
17 class="org.argeo.documents.workbench.DocumentsWorkbenchService" />
18
19 <!--order is important -->
20 <util:list id="knownWbServices">
21 <ref bean="peopleWorkbenchService" />
22 <ref bean="documentsWorkbenchService" />
23 <ref bean="activitiesWorkbenchService" />
24 <ref bean="resourcesWorkbenchService" />
25 </util:list>
26
27 <bean id="suiteWorkbenchService" class="org.argeo.suite.workbench.DefaultSuiteWorkbenchService">
28 <property name="knownAppWbServices" ref="knownWbServices" />
29 </bean>
30
31
32 <!-- Execute initialisation with a system authentication -->
33 <bean
34 class="org.argeo.cms.spring.AuthenticatedApplicationContextInitialization" />
35 </beans>