Home | History | Annotate | Download | only in auth

Lines Matching refs:userName

58      * The constructor with the fully qualified username and password combined 
61 * @param usernamePassword the domain/username:password formed string
66 throw new IllegalArgumentException("Username:password string may not be null");
68 String username;
71 username = usernamePassword.substring(0, atColon);
74 username = usernamePassword;
77 int atSlash = username.indexOf('/');
80 username.substring(0, atSlash).toUpperCase(Locale.ENGLISH),
81 username.substring(atSlash + 1));
85 username.substring(atSlash + 1));
92 * @param userName The user name. This should not include the domain to authenticate with.
100 final String userName,
105 if (userName == null) {
108 this.principal = new NTUserPrincipal(domain, userName);