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

io.hanko.sdk.webauthn.api.AuthenticationInitializationUser Maven / Gradle / Ivy

The newest version!
package io.hanko.sdk.webauthn.api;

/**
 * Represents the user on whose behalf authentication with an existing credential should be performed.
 */
public class AuthenticationInitializationUser extends User {

    /**
     * Construct an AuthenticationInitializationUser.
     *
     * Can be used for authentication with a resident key credential.
     */
    public AuthenticationInitializationUser() {
    }

    /**
     * Construct an AuthenticationInitializationUser.
     *
     * @param id nullable, a unique user ID;
     *           if {@code null}, indicates authentication with a resident key credential
     */
    public AuthenticationInitializationUser(String id) {
        super(id, null, null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy