From 7ead0e4af06bb213f24fcf07de8bd80b960a9595 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Wed, 26 Feb 2020 06:30:22 +0100 Subject: update wrong log messages --- .../impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java index 3fab0a4e..75b14489 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java @@ -470,7 +470,7 @@ public abstract class AbstractAuthenticationDataBuilder implements IAuthenticati // baseID is in AuthSesson --> calculate bPK directly } else if (StringUtils.isNotEmpty(authData.getIdentificationValue())) { - log.debug("Citizen baseID is in MOASession --> calculate bPK from this."); + log.debug("Citizen baseID is in AuthSession --> calculate bPK from this."); final Pair result = buildOAspecificbPK(pendingReq, authData); authData.setBpk(result.getFirst()); authData.setBpkType(result.getSecond()); @@ -490,9 +490,9 @@ public abstract class AbstractAuthenticationDataBuilder implements IAuthenticati notValidBpkType = pvpBpkTypeAttr; if (StringUtils.isEmpty(notValidbPK) && StringUtils.isEmpty(notValidBpkType)) { - log.error("No bPK in MOASession. THIS error should not occur any more."); + log.error("No bPK in AuthSession. THIS error should not occur any more."); throw new NullPointerException( - "No bPK in MOASession. THIS error should not occur any more."); + "No bPK in AuthSession. THIS error should not occur any more."); } } -- cgit v1.2.3