io.hanko.sdk.webauthn.api.AuthenticationInitializationUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for accessing the Hanko Authentication API
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