Package 

Interface AccessTokenResultCallback

    • Method Summary

      Modifier and Type Method Description
      abstract void onSuccess(@NonNull() String accessToken) Called when the Access Token is successfully fetched.
      abstract void onFailure(@NonNull() AccessTokenException exception) Called when the Access Token request fails.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onSuccess

         abstract void onSuccess(@NonNull() String accessToken)

        Called when the Access Token is successfully fetched.

        Parameters:
        accessToken - The Access Token response.
      • onFailure

         abstract void onFailure(@NonNull() AccessTokenException exception)

        Called when the Access Token request fails.

        Parameters:
        exception - The exception representing the failure reason.