Class AuthenticationChallengeResponse

java.lang.Object
com.esri.arcgisruntime.security.AuthenticationChallengeResponse

public final class AuthenticationChallengeResponse extends Object
Represents a response to an AuthenticationChallenge, indicating the action to be taken, and potentially a parameter with which to complete the action. Possible actions are outlined in AuthenticationChallengeResponse.Action. The CONTINUE_ actions should set the parameter to either a Credential object, CertificateCredential object or a SelfSignedResponse object, depending on which is used.
Since:
100.0.0
  • Constructor Details

    • AuthenticationChallengeResponse

      public AuthenticationChallengeResponse(AuthenticationChallengeResponse.Action action, Object param)
      Constructs a new AuthenticationChallengeResponse with the specified action and parameter.
      Parameters:
      action - the action to be taken in response to the challenge
      param - the parameter with which to complete the action
      Since:
      100.0.0
  • Method Details