diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-03-08 11:09:04 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-03-08 11:09:04 +0100 |
commit | e2d27757411fdcba586cc162f362c72ca3ae689c (patch) | |
tree | 093e26ab7b60e6d956a8bb8dac93fe317b8ea756 /id/server/modules/moa-id-module-eIDAS | |
parent | d6a3569addaf5a7db27dd3e79a4ba4bcd27c2486 (diff) | |
download | moa-id-spss-e2d27757411fdcba586cc162f362c72ca3ae689c.tar.gz moa-id-spss-e2d27757411fdcba586cc162f362c72ca3ae689c.tar.bz2 moa-id-spss-e2d27757411fdcba586cc162f362c72ca3ae689c.zip |
move SpingWebContextInitialisation into an appropriate jar to use moa-id-lib in other Spring based web applications
Diffstat (limited to 'id/server/modules/moa-id-module-eIDAS')
-rw-r--r-- | id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/eIDASAuthenticationSpringResourceProvider.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/eIDASAuthenticationSpringResourceProvider.java b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/eIDASAuthenticationSpringResourceProvider.java index 384516711..70bd7b3d7 100644 --- a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/eIDASAuthenticationSpringResourceProvider.java +++ b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/eIDASAuthenticationSpringResourceProvider.java @@ -4,7 +4,6 @@ import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import at.gv.egiz.components.spring.api.SpringResourceProvider; -import at.gv.egovernment.moa.id.auth.MOAIDAuthSpringResourceProvider; public class eIDASAuthenticationSpringResourceProvider implements SpringResourceProvider { @@ -21,7 +20,7 @@ public class eIDASAuthenticationSpringResourceProvider implements SpringResource @Override public Resource[] getResourcesToLoad() { - ClassPathResource eIDASAuthConfig = new ClassPathResource("/moaid_eidas_auth.beans.xml", MOAIDAuthSpringResourceProvider.class); + ClassPathResource eIDASAuthConfig = new ClassPathResource("/moaid_eidas_auth.beans.xml", eIDASAuthenticationSpringResourceProvider.class); return new Resource[] {eIDASAuthConfig}; } |