Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.security
Enum Class AuthenticationChallengeResponse.Action
java.lang.Object
java.lang.Enum<AuthenticationChallengeResponse.Action>
com.esri.arcgisruntime.security.AuthenticationChallengeResponse.Action
- All Implemented Interfaces:
Serializable
,Comparable<AuthenticationChallengeResponse.Action>
,Constable
- Enclosing class:
AuthenticationChallengeResponse
public static enum AuthenticationChallengeResponse.Action
extends Enum<AuthenticationChallengeResponse.Action>
Enum specifying the possible actions that can be taken in response to an AuthenticationChallenge.
- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCancels the current request.Retries the current request with the accompanyingCertificateCredential
Retries the current request with the accompanyingCredential
Applies the accompanyingSelfSignedResponse
(by either granting or denying trust to the server certificate, and caching or not caching the trust). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTINUE_WITH_CREDENTIAL
Retries the current request with the accompanyingCredential
- Since:
- 100.0.0
-
CONTINUE_WITH_SELF_SIGNED_RESPONSE
Applies the accompanyingSelfSignedResponse
(by either granting or denying trust to the server certificate, and caching or not caching the trust). If the response indicates that the server should be trusted, the request will be retried.- Since:
- 100.0.0
-
CONTINUE_AFTER_APPLYING_CLIENT_CERT
Retries the current request with the accompanyingCertificateCredential
- Since:
- 100.0.0
-
CANCEL
Cancels the current request.- Since:
- 100.0.0
-
-
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
-