io.fusionauth.domain.webauthn.PublicKeyCredentialUserEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
/*
* Copyright (c) 2022, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain.webauthn;
import io.fusionauth.domain.Buildable;
/**
* Supply additional information about the user account when creating a new credential
*
* @author Spencer Witt
*/
public class PublicKeyCredentialUserEntity extends PublicKeyCredentialEntity implements Buildable {
/**
* A human-readable name for the user account intended only for display. This value should be chosen by the user.
*/
public String displayName;
/**
* A user handle specified by the Relying Party that can be used to uniquely identify a
* user account with the Relying Party
*/
public String id;
}