Interface ResetPasswordView
-
- All Superinterfaces:
MvpView
- All Known Implementing Classes:
ResetPasswordActivity
public interface ResetPasswordView extends MvpView
MvpView
class ofResetPasswordActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
showError(java.lang.String error)
This will be called by the presenter if it fails to reset password.void
showProgressDialog(boolean show)
Show or hide progress dialogvoid
showSuccessDialog()
This will be called by the presenter after a successful password reset.
-
-
-
Method Detail
-
showSuccessDialog
void showSuccessDialog()
This will be called by the presenter after a successful password reset.
-
showError
void showError(java.lang.String error)
This will be called by the presenter if it fails to reset password.- Parameters:
error
- error message
-
showProgressDialog
void showProgressDialog(boolean show)
Show or hide progress dialog- Parameters:
show
- true to show dialog, false to hide
-
-