summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java
diff options
context:
space:
mode:
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/IRequest.java19
1 files changed, 19 insertions, 0 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 384446b8..05b7784e 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
@@ -263,5 +263,24 @@ public interface IRequest extends Serializable {
* otherwise false
*/
void setAbortedByUser(boolean isAborted);
+
+ /**
+ * Indicates, if the current process stage is in iFrame.
+ *
+ * <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
+ */
+ boolean isProcessInIframe();
+
+ /**
+ * Set the 'isProcessInIframe' 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
+ */
+ void setProcessInFrame(boolean flag);
+
+
}