Add setter for frontChannelLogoutSupported and frontChannelLogoutSessionSupported (#32532)

Closes  #30178

Signed-off-by: keshavprashantdeshpande <vaidehidabir@gmail.com>
This commit is contained in:
keshavprashantdeshpande 2024-09-02 14:18:01 +02:00 committed by GitHub
parent 5bd3da657b
commit 058c2717a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -635,10 +635,18 @@ public class OIDCConfigurationRepresentation {
return frontChannelLogoutSessionSupported; return frontChannelLogoutSessionSupported;
} }
public void setFrontChannelLogoutSessionSupported(Boolean frontChannelLogoutSessionSupported) {
this.frontChannelLogoutSessionSupported = frontChannelLogoutSessionSupported;
}
public Boolean getFrontChannelLogoutSupported() { public Boolean getFrontChannelLogoutSupported() {
return frontChannelLogoutSupported; return frontChannelLogoutSupported;
} }
public void setFrontChannelLogoutSupported(Boolean frontChannelLogoutSupported) {
this.frontChannelLogoutSupported = frontChannelLogoutSupported;
}
public Boolean getAuthorizationResponseIssParameterSupported() { public Boolean getAuthorizationResponseIssParameterSupported() {
return authorizationResponseIssParameterSupported; return authorizationResponseIssParameterSupported;
} }