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

io.quarkus.oidc.TenantFeature 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 static java.lang.annotation.ElementType.TYPE;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation which can be used to associate one or more OIDC features with a named tenant.
 */
@Target({ TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface TenantFeature {
    /**
     * Identifies an OIDC tenant to which a given feature applies.
     */
    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy