io.fusionauth.domain.ApplicationMultiFactorTrustPolicy 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;
/**
* @author Daniel DeGroff
*/
public enum ApplicationMultiFactorTrustPolicy {
// Any application means we can trust the MFA trust from all apps
Any,
// Only trust MFA trust gained from this app
This,
// Do not trust, always prompt for MFA
None
}