Package com.teamdev.jxbrowser.password
Interface PasswordRecord
public interface PasswordRecord
A record saved in the password store.
- Since:
- 7.20
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptiondefault Stringlogin()The username or email address used to log into the site.static PasswordRecord.BuildernewBuilder(String url, String password) Creates a newPasswordRecordbuilder with the given required parameters.default Stringurl()The URL of the site for which the password is saved.
-
Method Details
-
newBuilder
Creates a newPasswordRecordbuilder with the given required parameters.- Parameters:
url- the URL of the site for which the password is savedpassword- the password for the site- Returns:
- a new
PasswordRecord.Builderinstance - Since:
- 8.0.0
-
url
The URL of the site for which the password is saved. -
login
The username or email address used to log into the site.For blacklisted records, the login is empty.
-