From 058c2717a085c901b5f3bda79e31d07078fc7144 Mon Sep 17 00:00:00 2001 From: keshavprashantdeshpande Date: Mon, 2 Sep 2024 14:18:01 +0200 Subject: [PATCH] Add setter for `frontChannelLogoutSupported` and `frontChannelLogoutSessionSupported` (#32532) Closes #30178 Signed-off-by: keshavprashantdeshpande --- .../representations/OIDCConfigurationRepresentation.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/src/main/java/org/keycloak/protocol/oidc/representations/OIDCConfigurationRepresentation.java b/core/src/main/java/org/keycloak/protocol/oidc/representations/OIDCConfigurationRepresentation.java index e1196728a2..8ccc2ed6ff 100755 --- a/core/src/main/java/org/keycloak/protocol/oidc/representations/OIDCConfigurationRepresentation.java +++ b/core/src/main/java/org/keycloak/protocol/oidc/representations/OIDCConfigurationRepresentation.java @@ -635,10 +635,18 @@ public class OIDCConfigurationRepresentation { return frontChannelLogoutSessionSupported; } + public void setFrontChannelLogoutSessionSupported(Boolean frontChannelLogoutSessionSupported) { + this.frontChannelLogoutSessionSupported = frontChannelLogoutSessionSupported; + } + public Boolean getFrontChannelLogoutSupported() { return frontChannelLogoutSupported; } + public void setFrontChannelLogoutSupported(Boolean frontChannelLogoutSupported) { + this.frontChannelLogoutSupported = frontChannelLogoutSupported; + } + public Boolean getAuthorizationResponseIssParameterSupported() { return authorizationResponseIssParameterSupported; }