All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.security.webauthn.WebAuthnAuthenticationRequest Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy