public enum CredentialsResetTypeType extends Enum<CredentialsResetTypeType>
Java class for CredentialsResetTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CredentialsResetTypeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="securityQuestions"/>
<enumeration value="securityQuestionsWithEmail"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NONE
Credential reset is disabled.
|
SECURITY_QUESTIONS
Use security questions to reset the credential.
|
SECURITY_QUESTIONS_EMAIL
Use security questions to reset the credential.
|
| Modifier and Type | Method and Description |
|---|---|
static CredentialsResetTypeType |
fromValue(String v) |
String |
value() |
static CredentialsResetTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CredentialsResetTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialsResetTypeType NONE
public static final CredentialsResetTypeType SECURITY_QUESTIONS
public static final CredentialsResetTypeType SECURITY_QUESTIONS_EMAIL
public static CredentialsResetTypeType[] values()
for (CredentialsResetTypeType c : CredentialsResetTypeType.values()) System.out.println(c);
public static CredentialsResetTypeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static CredentialsResetTypeType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.