diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-07-30 12:33:26 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-07-30 12:33:26 +0200 |
commit | 0da02accef9737d48cf995c5e406deafd23ce32e (patch) | |
tree | 1ec330f3be924a47c86a1ec2097b5a906de6bb6b /eaaf_core/src/main | |
parent | 204e7dc0195b62a33f46aefb534cd59eb54b6c44 (diff) | |
download | EAAF-Components-0da02accef9737d48cf995c5e406deafd23ce32e.tar.gz EAAF-Components-0da02accef9737d48cf995c5e406deafd23ce32e.tar.bz2 EAAF-Components-0da02accef9737d48cf995c5e406deafd23ce32e.zip |
some some updates
Diffstat (limited to 'eaaf_core/src/main')
2 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 558a9a33..af66552d 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 @@ -95,10 +95,10 @@ public abstract class AbstractAuthenticationDataBuilder implements IAuthenticati log.info("User authentication uses the deprecated. Building AuthData from deprecated information ... "); authData = buildDeprecatedAuthData(pendingReq); Assert.notNull(authData, "AuthData is null"); - + } - } catch ( EAAFAuthenticationException e) { + } catch ( final EAAFAuthenticationException e) { throw e; } catch (XPathException | DOMException | EAAFException e) { diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java index 0aa7ff89..b4b188b6 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java @@ -390,7 +390,7 @@ public class ProtocolAuthenticationService implements IProtocolAuthenticationSer if (params[i] != null) errorCodeParams[i] = params[i].toString(); else - errorCodeParams[i] = "'null'"; + errorCodeParams[i] = "null"; } } |