diff options
author | Christian Maierhofer <cmaierhofer@iaik.tugraz.at> | 2016-05-18 13:40:42 +0200 |
---|---|---|
committer | Christian Maierhofer <cmaierhofer@iaik.tugraz.at> | 2016-05-18 13:40:42 +0200 |
commit | 0cf75d5ee50f3c285a772ce96411f7bf98fe2a72 (patch) | |
tree | 390747cec9f49aec4c1ecf35a5dca3c65b9d403c /id/server/modules/module-monitoring/src/main/resources | |
parent | 9e5fefab3ea53859e31af25c5fd3e68a23fe9883 (diff) | |
download | moa-id-spss-0cf75d5ee50f3c285a772ce96411f7bf98fe2a72.tar.gz moa-id-spss-0cf75d5ee50f3c285a772ce96411f7bf98fe2a72.tar.bz2 moa-id-spss-0cf75d5ee50f3c285a772ce96411f7bf98fe2a72.zip |
Adopted Monitoring Servlet
Diffstat (limited to 'id/server/modules/module-monitoring/src/main/resources')
2 files changed, 16 insertions, 0 deletions
diff --git a/id/server/modules/module-monitoring/src/main/resources/META-INF/services/at.gv.egiz.components.spring.api.SpringResourceProvider b/id/server/modules/module-monitoring/src/main/resources/META-INF/services/at.gv.egiz.components.spring.api.SpringResourceProvider new file mode 100644 index 000000000..b696bcdd7 --- /dev/null +++ b/id/server/modules/module-monitoring/src/main/resources/META-INF/services/at.gv.egiz.components.spring.api.SpringResourceProvider @@ -0,0 +1 @@ +at.gv.egovernment.moa.id.monitoring.MonitoringSpringResourceProvider
\ No newline at end of file diff --git a/id/server/modules/module-monitoring/src/main/resources/moaid_monitoring.beans.xml b/id/server/modules/module-monitoring/src/main/resources/moaid_monitoring.beans.xml new file mode 100644 index 000000000..41fab4444 --- /dev/null +++ b/id/server/modules/module-monitoring/src/main/resources/moaid_monitoring.beans.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<beans xmlns="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:context="http://www.springframework.org/schema/context" + xmlns:tx="http://www.springframework.org/schema/tx" + xmlns:aop="http://www.springframework.org/schema/aop" + xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd + http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd + http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> + + <bean id="testManager" + class="at.gv.egovernment.moa.id.monitoring.TestManager" + init-method="init"/> +</beans>
\ No newline at end of file |