io.quarkus.oidc.BearerTokenAuthentication Maven / Gradle / Ivy
package io.quarkus.oidc;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import io.quarkus.vertx.http.runtime.security.annotation.HttpAuthenticationMechanism;
/**
* Selects {@link io.quarkus.oidc.runtime.BearerAuthenticationMechanism}.
*
* @see HttpAuthenticationMechanism for more information
*/
@HttpAuthenticationMechanism("Bearer")
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
public @interface BearerTokenAuthentication {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy