Package com.esri.arcgisruntime.security
Interface AuthenticationChallengeHandler
-
- All Known Implementing Classes:
DefaultAuthenticationChallengeHandler
public interface AuthenticationChallengeHandlerInterface for handling AuthenticationChallenge issues. Must return an AuthenticationChallengeResponse, which contains an action (seeAuthenticationChallengeResponse.Action) and potentially a parameter with which to carry out the action.- Since:
- 100.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthenticationChallengeResponsehandleChallenge(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 Detail
-
handleChallenge
AuthenticationChallengeResponse handleChallenge(AuthenticationChallenge challenge)
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
-
-