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

io.fusionauth.domain.webauthn.AuthenticatorAttachment 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 com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Describes the authenticator attachment modality.
 *
 * @author Spencer Witt
 */
public enum AuthenticatorAttachment {
  /**
   * Attached using a client device-specific transport and is usually not removable from the device (e.g. Face ID, fingerprint scanner)
   */
  @JsonProperty("platform")
  platform,

  /**
   * Roaming authenticators that are removable and can move between devices (e.g. Yubikey, Bluetooth/NFC device)
   */
  @JsonProperty("cross-platform")
  crossPlatform
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy