public interface UpdatePasswordCallback extends BrowserAsyncCallback<UpdatePasswordCallback.Params,UpdatePasswordCallback.Action>
This callback is equivalent to the "Update Password?" bubble in Chromium.
The callback can be invoked only if the login and password from the form were previously saved in the password store and now user entered a new password value.
Use the UpdatePasswordCallback.Action.update() method to update the password for this login in the password store. The updated password will be reflected in the suggestions pop-up.
Use the UpdatePasswordCallback.Action.ignore() method to stay with the old password. If you submit the form with the same password value next time the callback will be invoked again.
The prerequisites for the callback invocation:
Modifier and Type | Interface and Description |
---|---|
static class |
UpdatePasswordCallback.Action
An action providing a response to the
UpdatePasswordCallback . |
static interface |
UpdatePasswordCallback.Params
The parameters of the
UpdatePasswordCallback . |
on