Interface OidcTenantConfig.PushedAuthorizationRequest

Enclosing interface:
OidcTenantConfig

public static interface OidcTenantConfig.PushedAuthorizationRequest
Pushed authorization request (PAR) configuration.
  • Method Summary

    Modifier and Type
    Method
    Description
    If the pushed authorization request is enabled for this OIDC tenant.
    Relative path or absolute URL of the authorization server's pushed authorization request endpoint.
  • Method Details

    • enabled

      @ConfigDocDefault("enabled if the discovered Authorization Server Metadata parameter \'require_pushed_authorization_requests\' is \'true\'") Optional<Boolean> enabled()
      If the pushed authorization request is enabled for this OIDC tenant. When enabled, Quarkus will act as if the authorization server accepts authorization request data only via PAR.
    • path

      Optional<String> path()
      Relative path or absolute URL of the authorization server's pushed authorization request endpoint. If not specified, Quarkus will use the URL of the PAR endpoint in the authorization server metadata document using the `pushed_authorization_request_endpoint` parameter.