blob: 5ac341a52e68c209c8df9c28eaca8a0de0bea75e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-4.0.xsd">
<!--<util:properties id="props" location="classpath:kustvakt.conf"/>-->
<bean id="props"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="ignoreResourceNotFound" value="true"/>
<property name="locations">
<array>
<value>classpath:kustvakt.conf</value>
<value>file:./kustvakt.conf</value>
</array>
</property>
</bean>
<bean id="kustvakt_auditing"
class="de.ids_mannheim.korap.interfaces.defaults.DefaultAuditing">
</bean>
<bean id="kustvakt_config"
class="de.ids_mannheim.korap.config.KustvaktConfiguration">
<property name="properties" ref="props"/>
</bean>
<bean name="kustvakt_encryption"
class="de.ids_mannheim.korap.interfaces.defaults.DefaultEncryption">
</bean>
</beans>