Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.security
Interface AuthenticationChallengeHandler
- All Known Implementing Classes:
DefaultAuthenticationChallengeHandler
public interface AuthenticationChallengeHandler
Interface for handling AuthenticationChallenge issues. Must return an AuthenticationChallengeResponse,
which contains an action (see
AuthenticationChallengeResponse.Action
)
and potentially a parameter with which to carry out the action.- Since:
- 100.0.0
-
Method Summary
Modifier and TypeMethodDescriptionhandleChallenge
(AuthenticationChallenge challenge) Handles the incoming AuthenticationChallenge, returning a response that contains an action and potentially a parameter with which to carry out the action.
-
Method Details
-
handleChallenge
Handles the incoming AuthenticationChallenge, returning a response that contains an action and potentially a parameter with which to carry out the action.- Parameters:
challenge
- the authentication challenge to handle- Returns:
- the response that should be taken
- Since:
- 100.0.0
-