io.quarkus.oidc.runtime.TenantConfigContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-oidc Show documentation
Show all versions of quarkus-oidc Show documentation
Secure your applications with OpenID Connect Adapter and IDP such as Keycloak
package io.quarkus.oidc.runtime;
import io.quarkus.oidc.OidcTenantConfig;
import io.vertx.ext.auth.oauth2.OAuth2Auth;
class TenantConfigContext {
/**
* Discovered OIDC
*/
final OAuth2Auth auth;
/**
* Tenant configuration
*/
final OidcTenantConfig oidcConfig;
TenantConfigContext(OAuth2Auth auth, OidcTenantConfig config) {
this.auth = auth;
this.oidcConfig = config;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy