diff options
Diffstat (limited to 'eaaf_core/src')
-rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java | 6 |
1 files 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<String, String> 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."); } } |