Salome HOME
6def9c89c809f601e0e3c0ab2e60960fe3d24b73
[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="stepsConfigService"
18         class="org.splat.service.technical.StepsConfigServiceImpl"/>
19         
20         <bean id="projectSettings"
21                 class="org.splat.service.technical.ProjectSettingsServiceImpl"
22                 init-method="configure">
23                 <property name="config" value="${wapp.configuration}" />
24         <property name="stepsConfigService" ref="stepsConfigService" />
25                 <property name="database" ref="database" />
26                 <property name="simulationContextTypeService"
27                         ref="simulationContextTypeService" />
28                 <property name="documentTypeService" ref="documentTypeService" />
29                 <property name="knowledgeElementTypeService"
30                         ref="knowledgeElementTypeService" />
31         </bean>
32
33         <bean id="indexService"
34                 class="org.splat.service.technical.IndexServiceImpl">
35                 <property name="projectElementService"
36                         ref="projectElementService" />
37                 <property name="repositoryService" ref="repositoryService" />
38         </bean>
39 </beans>