diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2020-02-19 13:46:10 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2020-02-19 13:46:10 +0100 |
commit | 830e1912e44e666c6853c9fedefcb032637bd0d9 (patch) | |
tree | d7684473c991bb4e786753b96ee37685d2905a5e /id/server/modules/moa-id-modules-saml1/src | |
parent | 7c361d450a97b9d79a1da90961fd727d2808f9c8 (diff) | |
download | moa-id-spss-830e1912e44e666c6853c9fedefcb032637bd0d9.tar.gz moa-id-spss-830e1912e44e666c6853c9fedefcb032637bd0d9.tar.bz2 moa-id-spss-830e1912e44e666c6853c9fedefcb032637bd0d9.zip |
separate between E-ID Proxy-Mode and Demo-Mode
Diffstat (limited to 'id/server/modules/moa-id-modules-saml1/src')
-rw-r--r-- | id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1AuthenticationServer.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1AuthenticationServer.java b/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1AuthenticationServer.java index af8211dee..73d3d369f 100644 --- a/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1AuthenticationServer.java +++ b/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1AuthenticationServer.java @@ -354,7 +354,11 @@ public class SAML1AuthenticationServer extends AuthenticationServer { if (Boolean.parseBoolean( oaParam.getConfigurationValue( MOAIDConfigurationConstants.SERVICE_AUTH_AUSTRIAN_EID_DEMO_MODE, - String.valueOf(false)))) { + String.valueOf(false))) || + Boolean.parseBoolean( + oaParam.getConfigurationValue( + MOAIDConfigurationConstants.SERVICE_AUTH_AUSTRIAN_EID_PROXY_MODE, + String.valueOf(false)))) { Logger.info("Demo-mode for 'New Austrian eID' is active. Add additonal attributes ... "); if (oaAttributes == null) |