Package de.elo.ix.client
Enum Class EAuthenticationType
- All Implemented Interfaces:
Serializable
,Comparable<EAuthenticationType>
,Constable
Authentication type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSession created from a cookie.Session created from a foreign ticket.Session create with Kerberos login.Session created with user name and password.IXConnection created for reading constants.Session created with user name and password and report-as-user.Session created with user name and password and run-as-user.Session created with SSO. -
Method Summary
Modifier and TypeMethodDescriptionstatic EAuthenticationType
Returns the enum constant of this class with the specified name.static EAuthenticationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_AUTHENTICATED
IXConnection created for reading constants.- See Also:
-
NAME_PASSWORD
Session created with user name and password. -
RUN_AS
Session created with user name and password and run-as-user. -
REPORT_AS
Session created with user name and password and report-as-user. -
SSO
Session created with SSO.- See Also:
-
KERBEROS
Session create with Kerberos login. -
FROM_TICKET
Session created from a foreign ticket. -
FROM_COOKIE
Session created from a cookie. See JSON API function IXConnFactory#createFromCookie(ClientInfo)- Since:
- 11.00.000.044
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-