Package com.okta.sdk.client
Enum AuthenticationScheme
- All Implemented Interfaces:
Serializable
,Comparable<AuthenticationScheme>
,java.lang.constant.Constable
Enumeration that defines the available HTTP authentication schemes to be used when communicating with the Okta API server.
The Authentication Scheme setting is helpful in cases where the code is run in a platform where the header information for outgoing HTTP requests is modified and thus causing communication issues.
One of SSWS (Okta session bearer token) (or) OAUTH2 authentication schemes should be used for the management SDK, NONE
should be used for unauthenticated requests.
- Since:
- 0.5.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AuthenticationScheme
Returns the enum constant of this type with the specified name.static AuthenticationScheme[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SSWS
-
OAUTH2_PRIVATE_KEY
-
NONE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getRequestAuthenticatorClassName
-