aboutsummaryrefslogtreecommitdiff
path: root/id/server/modules/moa-id-module-eIDAS/src
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2017-10-19 09:52:15 +0200
committerThomas Lenz <tlenz@iaik.tugraz.at>2017-10-19 09:52:15 +0200
commit93f4b4b2c616cc898a639384c906bd36ecf1c6d6 (patch)
tree8adf328477ac0e82ba6ea4b76d09ccf6ffceb19f /id/server/modules/moa-id-module-eIDAS/src
parent2fd5ecfd96829822800cc84b75ad86f9732c6a26 (diff)
downloadmoa-id-spss-93f4b4b2c616cc898a639384c906bd36ecf1c6d6.tar.gz
moa-id-spss-93f4b4b2c616cc898a639384c906bd36ecf1c6d6.tar.bz2
moa-id-spss-93f4b4b2c616cc898a639384c906bd36ecf1c6d6.zip
fix bug in eIDAS response encryption configuration
Diffstat (limited to 'id/server/modules/moa-id-module-eIDAS/src')
-rw-r--r--id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/tasks/GenerateAuthnRequestTask.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/tasks/GenerateAuthnRequestTask.java b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/tasks/GenerateAuthnRequestTask.java
index 831bed7a3..7242795d4 100644
--- a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/tasks/GenerateAuthnRequestTask.java
+++ b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/auth/modules/eidas/tasks/GenerateAuthnRequestTask.java
@@ -104,7 +104,7 @@ public class GenerateAuthnRequestTask extends AbstractAuthServletTask {
throw new AuthenticationException("eIDAS.03", new Object[] { "" });
}
- CPEPS cpeps = authConfig.getStorkConfig().getCPEPS(citizenCountryCode);
+ CPEPS cpeps = authConfig.getStorkConfig().getCPEPSWithFullName(citizenCountryCode);
if(null == cpeps) {
Logger.error("PEPS unknown for country", new Object[] {citizenCountryCode});
throw new AuthenticationException("eIDAS.04", new Object[] {citizenCountryCode});