diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2017-10-19 09:52:15 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2017-10-19 09:52:15 +0200 |
commit | 93f4b4b2c616cc898a639384c906bd36ecf1c6d6 (patch) | |
tree | 8adf328477ac0e82ba6ea4b76d09ccf6ffceb19f /id/server/moa-id-commons | |
parent | 2fd5ecfd96829822800cc84b75ad86f9732c6a26 (diff) | |
download | moa-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/moa-id-commons')
-rw-r--r-- | id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/api/IStorkConfig.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/api/IStorkConfig.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/api/IStorkConfig.java index b2d90aed4..bc4cd72af 100644 --- a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/api/IStorkConfig.java +++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/api/IStorkConfig.java @@ -44,7 +44,8 @@ public interface IStorkConfig { boolean isSTORKAuthentication(String ccc); - CPEPS getCPEPS(String ccc); + CPEPS getCPEPSWithFullName(String ccc); + CPEPS getCPEPSWithCC(String ccc); List<StorkAttribute> getStorkAttributes(); |