io.fusionauth.domain.webauthn.AuthenticatorAttachment 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 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
}