Enum Saml2NameIdAuthenticationModuleType
- java.lang.Object
-
- java.lang.Enum<Saml2NameIdAuthenticationModuleType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.Saml2NameIdAuthenticationModuleType
-
- All Implemented Interfaces:
Serializable
,Comparable<Saml2NameIdAuthenticationModuleType>
public enum Saml2NameIdAuthenticationModuleType extends Enum<Saml2NameIdAuthenticationModuleType>
Java class for Saml2NameIdAuthenticationModuleType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Saml2NameIdAuthenticationModuleType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress"/> <enumeration value="urn:oasis:names:tc:SAML:2.0:nameid-format:transient"/> <enumeration value="urn:oasis:names:tc:SAML:2.0:nameid-format:persistent"/> <enumeration value="urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified"/> <enumeration value="urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMAIL
PERSISTENT
TRANSIENT
UNSPECIFIED
X509_SUBJECT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Saml2NameIdAuthenticationModuleType
fromValue(String v)
String
value()
static Saml2NameIdAuthenticationModuleType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Saml2NameIdAuthenticationModuleType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMAIL
public static final Saml2NameIdAuthenticationModuleType EMAIL
-
TRANSIENT
public static final Saml2NameIdAuthenticationModuleType TRANSIENT
-
PERSISTENT
public static final Saml2NameIdAuthenticationModuleType PERSISTENT
-
UNSPECIFIED
public static final Saml2NameIdAuthenticationModuleType UNSPECIFIED
-
X509_SUBJECT
public static final Saml2NameIdAuthenticationModuleType X509_SUBJECT
-
-
Method Detail
-
values
public static Saml2NameIdAuthenticationModuleType[] 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 (Saml2NameIdAuthenticationModuleType c : Saml2NameIdAuthenticationModuleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Saml2NameIdAuthenticationModuleType 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
-
value
public String value()
-
fromValue
public static Saml2NameIdAuthenticationModuleType fromValue(String v)
-
-