blob: f0c380f71120d022f1124608dbee391ca7fc8eb6 [file] [log] [blame]
Michael Hanlca740d72015-06-16 10:04:58 +02001<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xmlns:util="http://www.springframework.org/schema/util"
4 xmlns="http://www.springframework.org/schema/beans"
5 xsi:schemaLocation="http://www.springframework.org/schema/beans
6 http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
7 http://www.springframework.org/schema/util
8 http://www.springframework.org/schema/util/spring-util-4.0.xsd">
9
10
Michael Hanlca740d72015-06-16 10:04:58 +020011 <util:properties id="props" location="classpath:kustvakt.conf"/>
12
13 <bean id="auditingProvider"
14 class="de.ids_mannheim.korap.interfaces.defaults.DefaultAuditing">
15 </bean>
16
17 <bean id="config"
18 class="de.ids_mannheim.korap.config.KustvaktConfiguration">
19 <property name="properties" ref="props"/>
20 </bean>
21
22 <bean name="encryption"
23 class="de.ids_mannheim.korap.interfaces.defaults.DefaultEncryption">
24 </bean>
25</beans>