diff options
author | Thomas <> | 2025-01-27 16:29:43 +0100 |
---|---|---|
committer | Thomas <> | 2025-01-27 16:29:43 +0100 |
commit | 47685f893454bf707cf668cffaa709897ee76172 (patch) | |
tree | 42f531a84b04e77e7418c9632e52579a9cee0eb2 /eaaf_core/src/main | |
parent | 0bead0663c9f97adf37515a87a57f1f715603487 (diff) | |
download | EAAF-Components-47685f893454bf707cf668cffaa709897ee76172.tar.gz EAAF-Components-47685f893454bf707cf668cffaa709897ee76172.tar.bz2 EAAF-Components-47685f893454bf707cf668cffaa709897ee76172.zip |
chore(core): forward HTTP status-code from configuration into default GUI model
Diffstat (limited to 'eaaf_core/src/main')
-rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.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/services/ProtocolAuthenticationService.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java index 0ab1f5ff..8ca3f25c 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 @@ -539,8 +539,8 @@ public class ProtocolAuthenticationService implements IProtocolAuthenticationSer throws EaafException { try { final IGuiBuilderConfiguration config = guiConfigFactory.getDefaultErrorGui( - getValidatedAuthUrl(httpReq)); - + getValidatedAuthUrl(httpReq), errorData.getHttpStatusCode()); + String[] errorCodeParams = null; if (params == null) { errorCodeParams = new String[] {}; |