Home | History | Annotate | Download | only in net

Lines Matching defs:userName

21  * This immutable class is a data structure that encapsulates username and
28 private String userName;
34 * username and password.
36 * @param userName
37 * the username to store.
41 public PasswordAuthentication(String userName, char[] password) {
42 this.userName = userName;
58 * Gets the username stored by this instance.
60 * @return the stored username.
63 return userName;