diff options
Diffstat (limited to 'eaaf_core/src/main/java')
| -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); | 
