]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.castor/src/main/resources/org/argeo/slc/castor/spring.xml
Event management
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.castor / src / main / resources / org / argeo / slc / castor / 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 </list>
29 </property>
30 <property name="whitespacePreserve" value="true" />
31 </bean>
32
33 <bean id="slcDefault.castor.xsltReportGenerator"
34 class="org.argeo.slc.xml.test.tree.XsltReportGenerator"
35 init-method="init">
36 <property name="xsltStyleSheet"
37 value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />
38 <property name="marshaller" ref="slcDefault.castor.marshaller" />
39 <property name="logXml" value="false" />
40 <property name="outputDir" value="${slc.workDir}/results/html" />
41 </bean>
42
43 <bean name="slcDefault.castor.fileSlcExecutionNotifier"
44 class="org.argeo.slc.xml.process.FileSlcExecutionNotifier">
45 <property name="basePath" value="${slc.workDir}/process" />
46 <property name="marshaller" ref="slcDefault.castor.marshaller" />
47 </bean>
48
49 </beans>