io.quarkus.oidc.TenantFeature Maven / Gradle / Ivy
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