diff options
author | lalber <lukas.alber@iaik.tugraz.at> | 2021-03-08 18:27:55 +0100 |
---|---|---|
committer | lalber <lukas.alber@iaik.tugraz.at> | 2021-03-08 18:27:55 +0100 |
commit | d025ac30b9c65a19535c7d6955b084960b4d0621 (patch) | |
tree | a9e6c68f7bf61dc27aefc60d28a0d746ec9ec3b6 /eaaf_core_api/src | |
parent | 54736c76e0ce7187915ccf9dec7573c0ab12d0a8 (diff) | |
download | EAAF-Components-d025ac30b9c65a19535c7d6955b084960b4d0621.tar.gz EAAF-Components-d025ac30b9c65a19535c7d6955b084960b4d0621.tar.bz2 EAAF-Components-d025ac30b9c65a19535c7d6955b084960b4d0621.zip |
First version of feature
Diffstat (limited to 'eaaf_core_api/src')
-rw-r--r-- | eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java index 6580fa30..7387f706 100644 --- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java +++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java @@ -19,17 +19,16 @@ package at.gv.egiz.eaaf.core.api.idp.auth.services; -import java.io.IOException; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - import at.gv.egiz.eaaf.core.api.IRequest; import at.gv.egiz.eaaf.core.api.logging.IStatisticLogger; import at.gv.egiz.eaaf.core.exceptions.EaafException; import at.gv.egiz.eaaf.core.exceptions.GuiBuildException; import at.gv.egiz.eaaf.core.impl.data.Pair; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + public interface IProtocolAuthenticationService { String PARAM_GUI_ERROMSG = "errorMsg"; @@ -37,6 +36,8 @@ public interface IProtocolAuthenticationService { String PARAM_GUI_EXTERNAL_ERRORCODE = "extErrorCode"; String PARAM_GUI_ERRORCODEPARAMS = "errorParams"; String PARAM_GUI_ERRORSTACKTRACE = "stacktrace"; + String PARAM_GUI_TICKET = "supportTicket"; + String PARAM_GUI_REDIRECT = "redirectLink"; /** * Initialize an authentication process for this protocol request. |