Package com.emc.documentum.rest.dfc
Enum Class AuthType
- All Implemented Interfaces:
Serializable
,Comparable<AuthType>
,Constable
Authentication types supported by the persistence layer.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe user credentials is the customer defined token.The default authentication type.The user credentials is the Documentum Login Ticket.The user credential is the OAuth 2.0 access tokenThe user credential is the OTDS password.The user credential is the OTDS OAuth 2.0 token.The user credentials is the Documentum user password.The authentication model is DFC principal mode (privileged DFC). -
Method Summary
-
Enum Constant Details
-
DEFAULT
The default authentication type. -
LOGIN_TICKET
The user credentials is the Documentum Login Ticket. -
PASSWORD
The user credentials is the Documentum user password. -
PRINCIPAL
The authentication model is DFC principal mode (privileged DFC). -
CUSTOM
The user credentials is the customer defined token. -
OTDS_PASSWORD
The user credential is the OTDS password. -
OTDS_TOKEN
The user credential is the OTDS OAuth 2.0 token. -
OAUTH2
The user credential is the OAuth 2.0 access token
-
-
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
-