Uses of Class
io.quarkus.security.webauthn.WebAuthnCredentialRecord
Packages that use WebAuthnCredentialRecord
-
Uses of WebAuthnCredentialRecord in io.quarkus.security.webauthn
Methods in io.quarkus.security.webauthn that return WebAuthnCredentialRecordModifier and TypeMethodDescriptionstatic WebAuthnCredentialRecordWebAuthnCredentialRecord.fromRequiredPersistedData(WebAuthnCredentialRecord.RequiredPersistedData persistedData) Reassembles a credential record from the given required persisted fields.Methods in io.quarkus.security.webauthn that return types with arguments of type WebAuthnCredentialRecordModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<WebAuthnCredentialRecord> WebAuthnUserProvider.findByCredentialId(String credentialId) Look up a WebAuthn credential by credential ID, this should return an exception Uni rather than return a null-item Uni in case the credential is not found.io.smallrye.mutiny.Uni<WebAuthnCredentialRecord> WebAuthnAuthenticatorStorage.findByCredID(String credID) io.smallrye.mutiny.Uni<List<WebAuthnCredentialRecord>> WebAuthnAuthenticatorStorage.findByUsername(String username) io.smallrye.mutiny.Uni<List<WebAuthnCredentialRecord>> WebAuthnUserProvider.findByUsername(String username) Look up a WebAuthn credential by username.io.smallrye.mutiny.Uni<WebAuthnCredentialRecord> WebAuthnSecurity.login(WebAuthnLoginResponse response, io.vertx.ext.web.RoutingContext ctx) Logs an existing WebAuthn user in.io.smallrye.mutiny.Uni<WebAuthnCredentialRecord> WebAuthnSecurity.login(io.vertx.core.json.JsonObject response, io.vertx.ext.web.RoutingContext ctx) Logs an existing WebAuthn user in.io.smallrye.mutiny.Uni<WebAuthnCredentialRecord> WebAuthnSecurity.register(String username, WebAuthnRegisterResponse response, io.vertx.ext.web.RoutingContext ctx) Registers a new WebAuthn credentials.io.smallrye.mutiny.Uni<WebAuthnCredentialRecord> WebAuthnSecurity.register(String username, io.vertx.core.json.JsonObject response, io.vertx.ext.web.RoutingContext ctx) Registers a new WebAuthn credentials.Methods in io.quarkus.security.webauthn with parameters of type WebAuthnCredentialRecordModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Void> WebAuthnAuthenticatorStorage.create(WebAuthnCredentialRecord credentialRecord) default io.smallrye.mutiny.Uni<Void> WebAuthnUserProvider.store(WebAuthnCredentialRecord credentialRecord) Store a new WebAuthn credential.