public interface PasswordStore extends ProfileService
SavePasswordCallback
,
UpdatePasswordCallback
Modifier and Type | Method and Description |
---|---|
java.util.List<PasswordRecord> |
all()
Returns all saved and blacklisted (marked as "never-saved")
records from the password store.
|
java.util.List<PasswordRecord> |
allNeverSaved()
Returns only blacklisted (marked as "never-saved") records
from the password store.
|
java.util.List<PasswordRecord> |
allSaved()
Returns only saved records from the password store.
|
void |
clear()
Clears all records in the password store.
|
void |
removeByUrl(java.lang.String url)
Removes records associated with this
url from the password store. |
profile
java.util.List<PasswordRecord> all()
Blacklisted records have only URLs, login is empty.
ObjectClosedException
- when the profile is deleted or its engine is closedjava.util.List<PasswordRecord> allSaved()
ObjectClosedException
- when the profile is deleted or its engine is closedjava.util.List<PasswordRecord> allNeverSaved()
ObjectClosedException
- when the profile is deleted or its engine is closedvoid removeByUrl(java.lang.String url)
url
from the password store.ObjectClosedException
- when the profile is deleted or its engine is closedjava.lang.IllegalArgumentException
- when url
is null
or empty.void clear()
ObjectClosedException
- when the profile is deleted or its engine is closed