Package io.quarkus.oidc
Class OidcTenantConfig.Logout
- java.lang.Object
-
- io.quarkus.oidc.OidcTenantConfig.Logout
-
- Enclosing class:
- OidcTenantConfig
public static class OidcTenantConfig.Logout extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Map<String,String>extraParamsAdditional properties which will be added as the query parameters to the logout redirect URI.Optional<String>pathThe relative path of the logout endpoint at the application.Optional<String>postLogoutPathRelative path of the application endpoint where the user should be redirected to after logging out from the OpenID Connect Provider.StringpostLogoutUriParamName of the post logout URI parameter which will be added as a query parameter to the logout redirect URI.
-
Constructor Summary
Constructors Constructor Description Logout()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>getExtraParams()StringgetPath()Optional<String>getPostLogoutPath()StringgetPostLogoutUriParam()voidsetExtraParams(Map<String,String> extraParams)voidsetPath(Optional<String> path)voidsetPostLogoutPath(Optional<String> postLogoutPath)voidsetPostLogoutUriParam(String postLogoutUriParam)
-
-
-
Field Detail
-
path
@ConfigItem public Optional<String> path
The relative path of the logout endpoint at the application. If provided, the application is able to initiate the logout through this endpoint in conformance with the OpenID Connect RP-Initiated Logout specification.
-
postLogoutPath
@ConfigItem public Optional<String> postLogoutPath
Relative path of the application endpoint where the user should be redirected to after logging out from the OpenID Connect Provider. This endpoint URI must be properly registered at the OpenID Connect Provider as a valid redirect URI.
-
postLogoutUriParam
@ConfigItem(defaultValue="post_logout_redirect_uri") public String postLogoutUriParam
Name of the post logout URI parameter which will be added as a query parameter to the logout redirect URI.
-
extraParams
@ConfigItem public Map<String,String> extraParams
Additional properties which will be added as the query parameters to the logout redirect URI.
-
-