Class OidcTenantConfig.Backchannel

java.lang.Object
io.quarkus.oidc.OidcTenantConfig.Backchannel
All Implemented Interfaces:
OidcTenantConfig.Backchannel
Enclosing class:
OidcTenantConfig

@Deprecated(since="3.18") public static class OidcTenantConfig.Backchannel extends Object implements OidcTenantConfig.Backchannel
Deprecated.
use the OidcTenantConfigBuilder.BackchannelBuilder builder
  • Field Details

    • path

      public Optional<String> path
      Deprecated.
      The relative path of the Back-Channel Logout endpoint at the application. It must start with the forward slash '/', for example, '/back-channel-logout'. This value is always resolved relative to 'quarkus.http.root-path'.
    • tokenCacheSize

      public int tokenCacheSize
      Deprecated.
      Maximum number of logout tokens that can be cached before they are matched against ID tokens stored in session cookies.
    • tokenCacheTimeToLive

      public Duration tokenCacheTimeToLive
      Deprecated.
      Number of minutes a logout token can be cached for.
    • cleanUpTimerInterval

      public Optional<Duration> cleanUpTimerInterval
      Deprecated.
      Token cache timer interval. If this property is set, a timer checks and removes the stale entries periodically.
    • logoutTokenKey

      public String logoutTokenKey
      Deprecated.
      Logout token claim whose value is used as a key for caching the tokens. Only `sub` (subject) and `sid` (session id) claims can be used as keys. Set it to `sid` only if ID tokens issued by the OIDC provider have no `sub` but have `sid` claim.
  • Constructor Details

    • Backchannel

      public Backchannel()
      Deprecated.
  • Method Details

    • setPath

      public void setPath(Optional<String> path)
      Deprecated.
    • getPath

      public Optional<String> getPath()
      Deprecated.
    • getLogoutTokenKey

      public String getLogoutTokenKey()
      Deprecated.
    • setLogoutTokenKey

      public void setLogoutTokenKey(String logoutTokenKey)
      Deprecated.
    • getTokenCacheSize

      public int getTokenCacheSize()
      Deprecated.
    • setTokenCacheSize

      public void setTokenCacheSize(int tokenCacheSize)
      Deprecated.
    • getTokenCacheTimeToLive

      public Duration getTokenCacheTimeToLive()
      Deprecated.
    • setTokenCacheTimeToLive

      public void setTokenCacheTimeToLive(Duration tokenCacheTimeToLive)
      Deprecated.
    • getCleanUpTimerInterval

      public Optional<Duration> getCleanUpTimerInterval()
      Deprecated.
    • setCleanUpTimerInterval

      public void setCleanUpTimerInterval(Duration cleanUpTimerInterval)
      Deprecated.
    • path

      public Optional<String> path()
      Deprecated.
      Description copied from interface: OidcTenantConfig.Backchannel
      The relative path of the Back-Channel Logout endpoint at the application. It must start with the forward slash '/', for example, '/back-channel-logout'. This value is always resolved relative to 'quarkus.http.root-path'.
      Specified by:
      path in interface OidcTenantConfig.Backchannel
    • tokenCacheSize

      public int tokenCacheSize()
      Deprecated.
      Description copied from interface: OidcTenantConfig.Backchannel
      Maximum number of logout tokens that can be cached before they are matched against ID tokens stored in session cookies.
      Specified by:
      tokenCacheSize in interface OidcTenantConfig.Backchannel
    • tokenCacheTimeToLive

      public Duration tokenCacheTimeToLive()
      Deprecated.
      Description copied from interface: OidcTenantConfig.Backchannel
      Number of minutes a logout token can be cached for.
      Specified by:
      tokenCacheTimeToLive in interface OidcTenantConfig.Backchannel
    • cleanUpTimerInterval

      public Optional<Duration> cleanUpTimerInterval()
      Deprecated.
      Description copied from interface: OidcTenantConfig.Backchannel
      Token cache timer interval. If this property is set, a timer checks and removes the stale entries periodically.
      Specified by:
      cleanUpTimerInterval in interface OidcTenantConfig.Backchannel
    • logoutTokenKey

      public String logoutTokenKey()
      Deprecated.
      Description copied from interface: OidcTenantConfig.Backchannel
      Logout token claim whose value is used as a key for caching the tokens. Only `sub` (subject) and `sid` (session id) claims can be used as keys. Set it to `sid` only if ID tokens issued by the OIDC provider have no `sub` but have `sid` claim.
      Specified by:
      logoutTokenKey in interface OidcTenantConfig.Backchannel