diff options
| author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-02-26 06:30:22 +0100 | 
|---|---|---|
| committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-02-26 06:30:22 +0100 | 
| commit | 7ead0e4af06bb213f24fcf07de8bd80b960a9595 (patch) | |
| tree | 1cf35e723e08316c431c6314724644f4c8eefd76 | |
| parent | eabf9205def375a38dbbe80de3a472b3e40f1bdb (diff) | |
| download | EAAF-Components-7ead0e4af06bb213f24fcf07de8bd80b960a9595.tar.gz EAAF-Components-7ead0e4af06bb213f24fcf07de8bd80b960a9595.tar.bz2 EAAF-Components-7ead0e4af06bb213f24fcf07de8bd80b960a9595.zip | |
update wrong log messages
| -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.");          }        } | 
