Uses of Interface
io.quarkus.security.identity.request.AuthenticationRequest
-
Packages that use AuthenticationRequest Package Description io.quarkus.security.identity io.quarkus.security.identity.request -
-
Uses of AuthenticationRequest in io.quarkus.security.identity
Classes in io.quarkus.security.identity with type parameters of type AuthenticationRequest Modifier and Type Interface Description interfaceIdentityProvider<T extends AuthenticationRequest>As the requirements for different providers are often different this interface has purposefully been made minimal.Methods in io.quarkus.security.identity with parameters of type AuthenticationRequest Modifier and Type Method Description io.smallrye.mutiny.Uni<SecurityIdentity>IdentityProviderManager. authenticate(AuthenticationRequest request)Attempts to create an authenticated identity for the providedAuthenticationRequest.SecurityIdentityIdentityProviderManager. authenticateBlocking(AuthenticationRequest request)Attempts to create an authenticated identity for the providedAuthenticationRequestin a blocking manner -
Uses of AuthenticationRequest in io.quarkus.security.identity.request
Classes in io.quarkus.security.identity.request that implement AuthenticationRequest Modifier and Type Class Description classAnonymousAuthenticationRequestA request the for the Anonymous identityclassBaseAuthenticationRequestBase implementation of theAuthenticationRequestinterface for convenience.classCertificateAuthenticationRequestAAuthenticationRequestto authenticate from aCertificateCredential, such as when authenticating clients through TLSclassTokenAuthenticationRequestAn simple authentication request that uses a tokenclassTrustedAuthenticationRequestA request to authenticate from a trusted source, such as an encrypted cookieclassUsernamePasswordAuthenticationRequestAn simple authentication request that uses a username and password
-