summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src
diff options
context:
space:
mode:
authorThomas <>2024-10-09 09:27:13 +0200
committerThomas <>2024-10-09 09:27:13 +0200
commit02c8926d1ae2e9b7ed0d9693b46a878711b145f1 (patch)
tree647aac9b47d4446094e3a601c98bce3745985e9d /eaaf_core_api/src
parent8d6cef78f6665f880bb4fbc07848f097c94fda76 (diff)
downloadEAAF-Components-02c8926d1ae2e9b7ed0d9693b46a878711b145f1.tar.gz
EAAF-Components-02c8926d1ae2e9b7ed0d9693b46a878711b145f1.tar.bz2
EAAF-Components-02c8926d1ae2e9b7ed0d9693b46a878711b145f1.zip
chore(core): optimize process parameters for Web-based or iFrame-based authentication processes
Diffstat (limited to 'eaaf_core_api/src')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java34
1 files changed, 26 insertions, 8 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java
index e10ec716..a4b532c7 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java
@@ -272,21 +272,39 @@ public interface IRequest extends Serializable {
void setAbortedByUser(boolean isAborted);
/**
- * Indicates, if the current process stage is in iFrame.
+ * Indicates, if the current process stage is Web-Browser based.
*
- * <p>If the current state is marked as 'in iFrame',
- * than the process engine will perform an target=_parent hope in case of an error</p>
*
- * @return true, if the process is in iFrame, otherwise false
+ * @return true, if the process is in Web-Browser, otherwise false
*/
- boolean isProcessInIframe();
+ boolean isWebBasedProcess();
/**
- * Set the 'isProcessInIframe' flag to this pending-request.
+ * Set the 'isWebBasedProcess' flag to this pending-request.
*
- * @param flag true, if the process is in iFrame and needs a target=_parent hope in case of an error
+ * @param flag true, if the process is in Web-Browser
*/
- void setProcessInFrame(boolean flag);
+ void setWebBasedProcess(boolean flag);
+
+ /**
+ * Indicates, if the current process stage is iFrame based.
+ *
+ * <p>
+ * If the current state is marked as 'in iFrame', than the process engine will
+ * perform an target=_parent hope in case of an error
+ * </p>
+ *
+ * @return true, if the process is in Web-Browser, otherwise false
+ */
+ boolean isIframebBasedProcess();
+
+ /**
+ * Set the 'isIFramebBasedProcess' flag to this pending-request.
+ *
+ * @param flag true, if the process is an iFrame and needs a target=_parent hope
+ * in case of an error
+ */
+ void setIframebBasedProcess(boolean flag);