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

io.quarkus.oidc.TenantIdentityProvider Maven / Gradle / Ivy

Go to download

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

There is a newer version: 3.17.5
Show newest version
package io.quarkus.oidc;

import io.quarkus.security.identity.SecurityIdentity;
import io.smallrye.mutiny.Uni;

/**
 * Tenant-specific {@link SecurityIdentity} provider. Associated tenant configuration needs to be selected
 * with the {@link Tenant} qualifier. When injection point is not annotated with the {@link Tenant}
 * qualifier, default tenant is selected.
 */
public interface TenantIdentityProvider {

    Uni authenticate(AccessTokenCredential token);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy