private ClickHandler getForgotPasswordClickListener() {
return new ClickHandler() {
public void onClick(ClickEvent event) {
ResetPasswordPresenter presenter = new ResetPasswordPresenter(DispatchServiceManager.get(), new ResetPasswordViewImpl());
presenter.resetPassword();
}
};
}
private void performSignIn(final boolean isLoginWithHttps, final Window win, final TextBox userNameField, final TextBox passwordField) {