Interface OidcClientReactiveFilterConfig


@ConfigMapping(prefix="quarkus.rest-client-oidc-filter") @ConfigRoot(phase=BUILD_AND_RUN_TIME_FIXED) public interface OidcClientReactiveFilterConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    Name of the configured OidcClient used by the OidcClientRequestReactiveFilter.
    boolean
    If Quarkus should refresh the access token after the MP REST client request results in 401 Unauthorized error.
  • Method Details

    • clientName

      Optional<String> clientName()
      Name of the configured OidcClient used by the OidcClientRequestReactiveFilter. You can override this configuration for individual MP RestClients with the `io.quarkus.oidc.client.filter.OidcClientFilter` annotation.
    • refreshOnUnauthorized

      @WithDefault("false") boolean refreshOnUnauthorized()
      If Quarkus should refresh the access token after the MP REST client request results in 401 Unauthorized error. The refresh can be useful when the access token can be revoked by other services while the access token still appears valid locally.