Salome HOME
Default document types mappings are moved from application settings (my.xml) to proje...
[tools/siman.git] / Workspace / Siman-Common / src / spring / technicalServiceContext.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"
4         xmlns:aop="http://www.springframework.org/schema/aop"
5         xmlns:tx="http://www.springframework.org/schema/tx"
6         xsi:schemaLocation="
7 http://www.springframework.org/schema/beans
8 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
9 http://www.springframework.org/schema/aop
10 http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
11 http://www.springframework.org/schema/tx
12 http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
13
14         <bean id="repositoryService"
15                 class="org.splat.service.technical.RepositoryServiceImpl" />
16
17         <bean id="projectSettings"
18                 class="org.splat.service.technical.ProjectSettingsServiceImpl">
19                 <property name="database" ref="database" />
20                 <property name="simulationContextTypeService"
21                         ref="simulationContextTypeService" />
22                 <property name="documentTypeService" ref="documentTypeService" />
23                 <property name="knowledgeElementTypeService"
24                         ref="knowledgeElementTypeService" />
25         </bean>
26
27         <bean id="indexService"
28                 class="org.splat.service.technical.IndexServiceImpl">
29                 <property name="projectElementService"
30                         ref="projectElementService" />
31                 <property name="repositoryService" ref="repositoryService" />
32         </bean>
33 </beans>