Home | History | Annotate | Download | only in address

Lines Matching refs:password

51     /** password field
53 protected String password;
89 if (this.password != null && other.password == null)
92 if (other.password != null && this.password == null)
95 if (this.password == other.password)
98 return (this.password.equals(other.password));
110 if (password != null)
111 buffer.append(user).append(COLON).append(password);
118 /** Clear the password field.
121 this.password = null;
139 /** get the password field.
143 return password;
165 * Set the password member
169 password = p;