Class HttpAuthenticator.NoAuthenticationMechanism

java.lang.Object
io.quarkus.vertx.http.runtime.security.HttpAuthenticator.NoAuthenticationMechanism
All Implemented Interfaces:
HttpAuthenticationMechanism
Enclosing class:
HttpAuthenticator

static class HttpAuthenticator.NoAuthenticationMechanism extends Object implements HttpAuthenticationMechanism
  • Constructor Details

    • NoAuthenticationMechanism

      NoAuthenticationMechanism()
  • Method Details

    • authenticate

      public io.smallrye.mutiny.Uni<io.quarkus.security.identity.SecurityIdentity> authenticate(io.vertx.ext.web.RoutingContext context, io.quarkus.security.identity.IdentityProviderManager identityProviderManager)
      Specified by:
      authenticate in interface HttpAuthenticationMechanism
    • getChallenge

      public io.smallrye.mutiny.Uni<ChallengeData> getChallenge(io.vertx.ext.web.RoutingContext context)
      Specified by:
      getChallenge in interface HttpAuthenticationMechanism
    • getCredentialTypes

      public Set<Class<? extends io.quarkus.security.identity.request.AuthenticationRequest>> getCredentialTypes()
      Description copied from interface: HttpAuthenticationMechanism
      If this mechanism delegates authentication to the IdentityProviderManager using the IdentityProviderManager.authenticate(AuthenticationRequest) call, then the mechanism must provide supported AuthenticationRequest request types. It allows Quarkus to validate that one or more IdentityProvider providers with matching supported IdentityProvider.getRequestType() request types exist and fail otherwise.
      Specified by:
      getCredentialTypes in interface HttpAuthenticationMechanism
      Returns:
      required credential types