diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2018-07-19 09:34:48 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2018-07-19 09:34:48 +0200 |
commit | 9e8ff475568c7fe29c4ffa253fafd5cabd3a6b5a (patch) | |
tree | 86a379958ba0fbd5707c7b872ef7257c022eed7b /eaaf_core/src | |
parent | aee52550868c56de7f7063e4ca153b031dedecb0 (diff) | |
download | EAAF-Components-9e8ff475568c7fe29c4ffa253fafd5cabd3a6b5a.tar.gz EAAF-Components-9e8ff475568c7fe29c4ffa253fafd5cabd3a6b5a.tar.bz2 EAAF-Components-9e8ff475568c7fe29c4ffa253fafd5cabd3a6b5a.zip |
some small changes to solve compatibility problems
Diffstat (limited to 'eaaf_core/src')
-rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/BPKBuilder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/BPKBuilder.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/BPKBuilder.java index 62a57dd1..dfafea6f 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/BPKBuilder.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/BPKBuilder.java @@ -173,7 +173,7 @@ public class BPKBuilder { // check if we have been called by public sector application if (baseIDType.startsWith(EAAFConstants.URN_PREFIX_BASEID)) { - bPKType = EAAFConstants.URN_PREFIX_EIDAS + "+" + sourceCountry + "+" + destinationCountry; + bPKType = EAAFConstants.URN_PREFIX_EIDAS + sourceCountry + "+" + destinationCountry; log.debug("Building eIDAS identification from: [identValue]+" + bPKType); bPK = calculatebPKwbPK(baseID + "+" + bPKType); @@ -192,7 +192,7 @@ public class BPKBuilder { bPK + ", Zielland=" + destinationCountry + ", Ursprungsland=" + sourceCountry); } - log.debug("Building eIDAS identification from: " + sourceCountry+"/"+destinationCountry+"/" + "[identValue]"); + log.trace("eIDAS pseudonym generation finished. "); String eIdentifier = sourceCountry + "/" + destinationCountry + "/" + bPK; return Pair.newInstance(eIdentifier, bPKType); |