Enum MyDeviceAuthenticationFactors.Type
- java.lang.Object
-
- java.lang.Enum<MyDeviceAuthenticationFactors.Type>
-
- com.oracle.bmc.identitydomains.model.MyDeviceAuthenticationFactors.Type
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<MyDeviceAuthenticationFactors.Type>
- Enclosing class:
- MyDeviceAuthenticationFactors
public static enum MyDeviceAuthenticationFactors.Type extends Enum<MyDeviceAuthenticationFactors.Type> implements BmcEnum
Authentication Factor Type*SCIM++ Properties:** - caseExact: true - idcsSearchable: true - multiValued: false - mutability: readWrite - required: true - returned: default - type: string - uniqueness: none - idcsRequiresWriteForAccessFlows: true - idcsRequiresImmediateReadAfterWriteForAccessFlows: true
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Email
FidoAuthenticator
Offlinetotp
PhoneCall
Push
Sms
Thirdparty
Totp
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Voice
YubicoOtp
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MyDeviceAuthenticationFactors.Type
create(String key)
String
getValue()
static MyDeviceAuthenticationFactors.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static MyDeviceAuthenticationFactors.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Email
public static final MyDeviceAuthenticationFactors.Type Email
-
Sms
public static final MyDeviceAuthenticationFactors.Type Sms
-
Totp
public static final MyDeviceAuthenticationFactors.Type Totp
-
Push
public static final MyDeviceAuthenticationFactors.Type Push
-
Offlinetotp
public static final MyDeviceAuthenticationFactors.Type Offlinetotp
-
Voice
public static final MyDeviceAuthenticationFactors.Type Voice
-
PhoneCall
public static final MyDeviceAuthenticationFactors.Type PhoneCall
-
Thirdparty
public static final MyDeviceAuthenticationFactors.Type Thirdparty
-
FidoAuthenticator
public static final MyDeviceAuthenticationFactors.Type FidoAuthenticator
-
YubicoOtp
public static final MyDeviceAuthenticationFactors.Type YubicoOtp
-
UnknownEnumValue
public static final MyDeviceAuthenticationFactors.Type UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static MyDeviceAuthenticationFactors.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MyDeviceAuthenticationFactors.Type c : MyDeviceAuthenticationFactors.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MyDeviceAuthenticationFactors.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static MyDeviceAuthenticationFactors.Type create(String key)
-
-