API Reference

com.kinvey.android.callback

Interface KinveyUserManagementCallback



  • public KinveyUserManagementCallback

    This callback is used for User Management operations, such as sending emails or password reset forms.

    This methods which use this callback do not provide any return values, instead they either "ran" or "didn't run".

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method and Description
      void onFailure(java.lang.Throwable error)
      Method invoked when a user operation fails to complete.
      void onSuccess(java.lang.Void result)
      Method invoked when a user operation completes.
    • Method Detail

      • onSuccess

        void onSuccess(java.lang.Void result)

        Method invoked when a user operation completes.

        Parameters:
        result -
        • typed to Void because there is no usable return value.

      • onFailure

        void onFailure(java.lang.Throwable error)

        Method invoked when a user operation fails to complete.

        Parameters:
        error -
        • details about the error.