summaryrefslogtreecommitdiff
path: root/src/main/resources/de/itc/onkostar/library/moduleContext.xml
blob: 0a03d31e2829b7cb2d434011c0575366d62e020f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:context="http://www.springframework.org/schema/context"
  xmlns:mvc="http://www.springframework.org/schema/mvc"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:tx="http://www.springframework.org/schema/tx"
  xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">
 
    <bean id="DNPMHelper" class="dev.dnpm.oshelper.analyzer.DNPMHelper">
        <constructor-arg ref="localOnkostarApi" />
        <constructor-arg ref="systemtherapieService" />
    </bean>
    <bean id="Merkmalskatalog" class="dev.dnpm.oshelper.analyzer.Merkmalskatalog">
        <constructor-arg ref="localOnkostarApi" />
    </bean>
    <bean id="ConsentManager" class="dev.dnpm.oshelper.analyzer.ConsentManager">
        <constructor-arg ref="localOnkostarApi" />
        <constructor-arg ref="consentManagerServiceFactory" />
    </bean>

    <context:component-scan base-package="dev.dnpm.oshelper.config" />

    <mvc:resources mapping="/app/lib/umr/**/*.js" location="classpath:/app/lib/umr/" />
    <mvc:resources mapping="/app/plugins/oshelper/**/*.js" location="classpath:/dev/dnpm/oshelper/js/" />
</beans>