Interface ChangePasswordView
-
- All Superinterfaces:
MvpView
- All Known Implementing Classes:
ChangePasswordActivity
public interface ChangePasswordView extends MvpView
MvpViewclass ofChangePasswordActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidshowError(java.lang.String error)This will be called by the presenter if it fails to change password.voidshowPasswordSuccessDialog()This will be called by the presenter after successfully changing password from the SDK.
-
-
-
Method Detail
-
showPasswordSuccessDialog
void showPasswordSuccessDialog()
This will be called by the presenter after successfully changing password from the SDK.
-
showError
void showError(java.lang.String error)
This will be called by the presenter if it fails to change password.- Parameters:
error- error returned by SDK
-
-