Home | History | Annotate | Download | only in auth

Lines Matching refs:userName

38  * Username and password {@link Credentials}
54 * The constructor with the username and password combined string argument.
56 * @param usernamePassword the username:password formed string
62 throw new IllegalArgumentException("Username:password string may not be null");
76 * The constructor with the username and password arguments.
78 * @param userName the user name
81 public UsernamePasswordCredentials(String userName, String password) {
83 if (userName == null) {
84 throw new IllegalArgumentException("Username may not be null");
86 this.principal = new BasicUserPrincipal(userName);