Add setter for frontChannelLogoutSupported
and frontChannelLogoutSessionSupported
(#32532)
Closes #30178 Signed-off-by: keshavprashantdeshpande <vaidehidabir@gmail.com>
This commit is contained in:
parent
5bd3da657b
commit
058c2717a0
1 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue