Interface PasswordRecord


public interface PasswordRecord
A record saved in the password store.
Since:
7.20
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder of PasswordRecord.
  • Method Summary

    Modifier and Type
    Method
    Description
    default String
    The username or email address used to log into the site.
    newBuilder(String url, String password)
    Creates a new PasswordRecord builder with the given required parameters.
    default String
    url()
    The URL of the site for which the password is saved.
  • Method Details

    • newBuilder

      static PasswordRecord.Builder newBuilder(String url, String password)
      Creates a new PasswordRecord builder with the given required parameters.
      Parameters:
      url - the URL of the site for which the password is saved
      password - the password for the site
      Returns:
      a new PasswordRecord.Builder instance
      Since:
      8.0.0
    • url

      default String url()
      The URL of the site for which the password is saved.
    • login

      default String login()
      The username or email address used to log into the site.

      For blacklisted records, the login is empty.