You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Represents the value of the {@code oidc_backchannel_logout} property on an Auth0 application.\
12
+
* @see Client
13
+
* @see com.auth0.client.mgmt.ClientsEntity
14
+
*/
15
+
@JsonIgnoreProperties(ignoreUnknown = true)
16
+
@JsonInclude(JsonInclude.Include.NON_NULL)
17
+
publicclassOIDCBackchannelLogout {
18
+
19
+
@JsonProperty("backchannel_logout_urls")
20
+
privateList<String> backchannelLogoutUrls;
21
+
22
+
/**
23
+
* Create a new instance with the given list of Logout URIs that will receive a {@code logout_token} when selected Back-Channel Logout Initiators occur.
24
+
* @param backchannelLogoutUrls the list of allowed backchannel logout URLs.
0 commit comments