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

io.fusionauth.domain.webauthn.PublicKeyCredentialUserEntity Maven / Gradle / Ivy

There is a newer version: 1.53.0
Show newest version
/*
 * 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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy