Package com.okta.sdk.client
Enum AuthenticationScheme
- java.lang.Object
-
- java.lang.Enum<AuthenticationScheme>
-
- com.okta.sdk.client.AuthenticationScheme
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AuthenticationScheme>
public enum AuthenticationScheme extends java.lang.Enum<AuthenticationScheme>
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
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
OAUTH2_PRIVATE_KEY
SSWS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getRequestAuthenticatorClassName()
static AuthenticationScheme
valueOf(java.lang.String name)
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 Detail
-
SSWS
public static final AuthenticationScheme SSWS
-
OAUTH2_PRIVATE_KEY
public static final AuthenticationScheme OAUTH2_PRIVATE_KEY
-
NONE
public static final AuthenticationScheme NONE
-
-
Method Detail
-
values
public static AuthenticationScheme[] 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 (AuthenticationScheme c : AuthenticationScheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationScheme valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getRequestAuthenticatorClassName
public java.lang.String getRequestAuthenticatorClassName()
-
-