Home | History | Annotate | Download | only in auth

Lines Matching defs:password

56     /** Password */
57 private final String password;
63 * The constructor with the fully qualified username and password combined
66 * @param usernamePassword the domain/username:password formed string
71 throw new IllegalArgumentException("Username:password string may not be null");
77 this.password = usernamePassword.substring(atColon + 1);
80 this.password = null;
99 * @param password The password.
106 final String password,
114 this.password = password;
131 return this.password;