All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.oidc.runtime.TenantConfigContext Maven / Gradle / Ivy

Go to download

Secure your applications with OpenID Connect Adapter and IDP such as Keycloak

There is a newer version: 3.18.0.CR1
Show newest version
package io.quarkus.oidc.runtime;

import io.vertx.ext.auth.oauth2.OAuth2Auth;

class TenantConfigContext {

    OAuth2Auth auth;
    OidcTenantConfig oidcConfig;

    TenantConfigContext(OAuth2Auth auth, OidcTenantConfig config) {
        this.auth = auth;
        oidcConfig = config;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy