diff options
Diffstat (limited to 'eaaf_core/src/main/java/at')
2 files changed, 4 insertions, 14 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 9b8900da..0ab1f5ff 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 @@ -628,7 +628,7 @@ public class ProtocolAuthenticationService implements IProtocolAuthenticationSer } private IGuiBuilderConfiguration evaluateRequiredErrorHandlingMethod(IRequest first, String errorId) { - if (first != null && first.isProcessInIframe()) { + if (first != null && first.isIframebBasedProcess()) { return guiConfigFactory .getDefaultIFrameParentHopGui(first, ProtocolFinalizationController.ENDPOINT_ERRORHANDLING, errorId); diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/protocols/RequestImpl.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/protocols/RequestImpl.java index ee4f2aaf..66035114 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/protocols/RequestImpl.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/controller/protocols/RequestImpl.java @@ -108,7 +108,9 @@ public abstract class RequestImpl implements IRequest, Serializable { private boolean needUserConsent = false; - private boolean currentlyInIframe = false; + private boolean webBasedProcess = true; + + private boolean iframebBasedProcess = false; private final Map<String, Object> genericDataStorage = new HashMap<>(); @@ -482,18 +484,6 @@ public abstract class RequestImpl implements IRequest, Serializable { } - @JsonIgnore - @Override - public boolean isProcessInIframe() { - return this.currentlyInIframe; - } - - @Override - public void setProcessInFrame(boolean flag) { - this.currentlyInIframe = flag; - - } - @Override public final Object getRawData(final String key) { if (StringUtils.isNotEmpty(key)) { |