Home | History | Annotate | Download | only in auth

Lines Matching refs:username

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");
73 String username;
76 username = usernamePassword.substring(0, atColon);
79 username = usernamePassword;
82 int atSlash = username.indexOf('/');
85 username.substring(0, atSlash).toUpperCase(Locale.ENGLISH),
86 username.substring(atSlash + 1));
90 username.substring(atSlash + 1));
97 * @param userName The user name. This should not include the domain to authenticate with.
105 final String userName,
110 if (userName == null) {
113 this.principal = new NTUserPrincipal(domain, userName);