diff options
author | Thomas Knall <t.knall@datentechnik-innovation.com> | 2015-01-30 10:45:59 +0100 |
---|---|---|
committer | Thomas Knall <t.knall@datentechnik-innovation.com> | 2015-01-30 10:45:59 +0100 |
commit | 373641cfb0e404e89f4d9a011ae53d8b8cfc06c5 (patch) | |
tree | 6aff1a1dba922374c9eb8da2bffd4b2b32494b49 /id/server/idserverlib/src/main/resources/at | |
parent | 6371e01c520de77b0f37f59c72dbe20fce88c91a (diff) | |
download | moa-id-spss-373641cfb0e404e89f4d9a011ae53d8b8cfc06c5.tar.gz moa-id-spss-373641cfb0e404e89f4d9a011ae53d8b8cfc06c5.tar.bz2 moa-id-spss-373641cfb0e404e89f4d9a011ae53d8b8cfc06c5.zip |
Add dynamic servlet registration for STORK processes.
- Add STORKWebApplicationInitializer.java
- Adjust web.xml
- Move STORK.authmodule.beans.xml to src/main/resources/...
Diffstat (limited to 'id/server/idserverlib/src/main/resources/at')
-rw-r--r-- | id/server/idserverlib/src/main/resources/at/gv/egovernment/moa/id/auth/modules/stork/STORK.authmodule.beans.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/id/server/idserverlib/src/main/resources/at/gv/egovernment/moa/id/auth/modules/stork/STORK.authmodule.beans.xml b/id/server/idserverlib/src/main/resources/at/gv/egovernment/moa/id/auth/modules/stork/STORK.authmodule.beans.xml new file mode 100644 index 000000000..2e924bdd0 --- /dev/null +++ b/id/server/idserverlib/src/main/resources/at/gv/egovernment/moa/id/auth/modules/stork/STORK.authmodule.beans.xml @@ -0,0 +1,14 @@ +<?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"
+ xsi:schemaLocation="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.xsd">
+
+ <context:annotation-config />
+
+ <bean id="storkAuthModule" class="at.gv.egovernment.moa.id.auth.modules.stork.STORKAuthModuleImpl">
+ <property name="priority" value="0" />
+ </bean>
+
+</beans>
|