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

io.fusionauth.domain.webauthn.WebAuthnWorkflow 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;

/**
 * Identifies the WebAuthn workflow. This will affect the parameters used for credential creation
 * and request based on the Tenant configuration.
 *
 * @author Spencer Witt
 */
public enum WebAuthnWorkflow {
  /**
   * Used for passwordless authentication on a new device.
   */
  bootstrap,

  /**
   * Used for self-service credential registration.
   */
  general,

  /**
   * Used for passwordless re-authentication on a previously used device.
   */
  reauthentication
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy