io.quarkus.security.webauthn.WebAuthnAuthenticationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-security-webauthn Show documentation
Show all versions of quarkus-security-webauthn Show documentation
Secure your applications with WebAuthn
package io.quarkus.security.webauthn;
import io.quarkus.security.identity.request.BaseAuthenticationRequest;
import io.vertx.ext.auth.webauthn.WebAuthnCredentials;
public class WebAuthnAuthenticationRequest extends BaseAuthenticationRequest {
private WebAuthnCredentials credentials;
public WebAuthnAuthenticationRequest(WebAuthnCredentials credentials) {
this.credentials = credentials;
}
public WebAuthnCredentials getCredentials() {
return credentials;
}
}