Interface ForgotPasswordView
-
- All Superinterfaces:
MvpView
- All Known Implementing Classes:
ForgotPasswordActivity
public interface ForgotPasswordView extends MvpView
MvpView
class ofForgotPasswordActivity
-
-
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 request password reset.void
showProgressDialog(boolean show)
Show or hide progress dialogvoid
showSuccessDialog(java.lang.String message)
This will be called by the presenter after successfully requesting password reset.
-
-
-
Method Detail
-
showSuccessDialog
void showSuccessDialog(java.lang.String message)
This will be called by the presenter after successfully requesting password reset.- Parameters:
message
- success message
-
showError
void showError(java.lang.String error)
This will be called by the presenter if it fails to request password reset.- Parameters:
error
- error message
-
showProgressDialog
void showProgressDialog(boolean show)
Show or hide progress dialog- Parameters:
show
- true to show dialog, false to hide
-
-