]> git.argeo.org Git - gpl/argeo-slc.git/blob - spring.xml
de3e0c9772858cb35e64aa9b52a885ad2b5da30b
[gpl/argeo-slc.git] / spring.xml
1 <beans xmlns="http://www.springframework.org/schema/beans"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
4 default-lazy-init="true">
5
6 <bean id="slcDefault.castor.marshaller"
7 class="org.springframework.oxm.castor.CastorMarshaller">
8 <property name="mappingLocations">
9 <list>
10 <value>
11 classpath:org/argeo/slc/castor/msg.xml
12 </value>
13 <value>
14 classpath:org/argeo/slc/castor/process.xml
15 </value>
16 <value>
17 classpath:org/argeo/slc/castor/runtime.xml
18 </value>
19 <value>
20 classpath:org/argeo/slc/castor/structure.xml
21 </value>
22 <value>
23 classpath:org/argeo/slc/castor/test.xml
24 </value>
25 <value>
26 classpath:org/argeo/slc/castor/execution.xml
27 </value>
28 <value>
29 classpath:org/argeo/slc/castor/attachment.xml
30 </value>
31 </list>
32 </property>
33 <property name="whitespacePreserve" value="true" />
34 </bean>
35
36 <bean id="slcDefault.castor.xsltReportGenerator"
37 class="org.argeo.slc.xml.test.tree.XsltReportGenerator"
38 init-method="init">
39 <property name="xsltStyleSheet"
40 value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />
41 <property name="marshaller" ref="slcDefault.castor.marshaller" />
42 <property name="logXml" value="false" />
43 <property name="outputDir" value="${slc.workDir}/results/html" />
44 </bean>
45
46 <bean name="slcDefault.castor.fileSlcExecutionNotifier"
47 class="org.argeo.slc.xml.process.FileSlcExecutionNotifier">
48 <property name="basePath" value="${slc.workDir}/process" />
49 <property name="marshaller" ref="slcDefault.castor.marshaller" />
50 </bean>
51
52 </beans>