]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.castor/src/main/resources/org/argeo/slc/castor/spring.xml
Add security
[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" class="org.springframework.oxm.castor.CastorMarshaller">
7 <property name="mappingLocations">
8 <list>
9 <value>
10 classpath:org/argeo/slc/castor/msg.xml
11 </value>
12 <value>
13 classpath:org/argeo/slc/castor/process.xml
14 </value>
15 <value>
16 classpath:org/argeo/slc/castor/runtime.xml
17 </value>
18 <value>
19 classpath:org/argeo/slc/castor/structure.xml
20 </value>
21 <value>
22 classpath:org/argeo/slc/castor/test.xml
23 </value>
24 <value>
25 classpath:org/argeo/slc/castor/execution.xml
26 </value>
27 <value>
28 classpath:org/argeo/slc/castor/attachment.xml
29 </value>
30 </list>
31 </property>
32 <property name="whitespacePreserve" value="true" />
33 <property name="encoding" value="UTF-8" />
34 </bean>
35
36 <bean id="slcDefault.castor.xsltReportGenerator" class="org.argeo.slc.xml.test.tree.XsltReportGenerator"
37 init-method="init">
38 <property name="xsltStyleSheet"
39 value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />
40 <property name="marshaller" ref="slcDefault.castor.marshaller" />
41 <property name="logXml" value="false" />
42 <property name="outputDir" value="${slc.workDir}/results/html" />
43 </bean>
44
45 <bean name="slcDefault.castor.fileSlcExecutionNotifier" class="org.argeo.slc.xml.process.FileSlcExecutionNotifier">
46 <property name="basePath" value="${slc.workDir}/process" />
47 <property name="marshaller" ref="slcDefault.castor.marshaller" />
48 </bean>
49
50 </beans>