mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-02 01:02:55 +00:00
30 lines
1.6 KiB
XML
30 lines
1.6 KiB
XML
<?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.analyzer.DNPMHelper">
|
|
<constructor-arg ref="localOnkostarApi" />
|
|
<constructor-arg ref="systemtherapieService" />
|
|
</bean>
|
|
<bean id="Merkmalskatalog" class="dev.dnpm.analyzer.Merkmalskatalog">
|
|
<constructor-arg ref="localOnkostarApi" />
|
|
</bean>
|
|
<bean id="ConsentManager" class="dev.dnpm.analyzer.ConsentManager">
|
|
<constructor-arg ref="localOnkostarApi" />
|
|
<constructor-arg ref="consentManagerServiceFactory" />
|
|
</bean>
|
|
|
|
<context:component-scan base-package="de.ukw.ccc.onkostar.atccodes" />
|
|
<context:component-scan base-package="DNPM.config" />
|
|
|
|
<mvc:resources mapping="/app/lib/umr/**/*.js" location="classpath:/app/lib/umr/" />
|
|
<mvc:resources mapping="/app/plugins/atccodes/**/*.js" location="classpath:/de/ukw/ccc/onkostar/atccodes/" />
|
|
</beans> |