Searched defs:username (Results 26 - 32 of 32) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DLdapLoginModule.java57 * A username and password is verified against the corresponding user
63 * created using the user's username and both are associated
72 * An (anonymous) search is performed using the supplied username in
82 * supplied username and password and then the LDAP directory is searched.
84 * supplied username in conjunction with a specified search filter.
91 * supplied username and password. The LDAP directory is not searched because
135 * then that token will be replaced with the supplied username value
145 * which will be replaced with the supplied username value before the
170 * <dd> if <code>true</code>, this module retrieves the username and password
178 * <dd> if <code>true</code>, this module retrieves the username an
358 private String username; field in class:LdapLoginModule
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Client.java69 * handler must enter username to use for authentication
71 * handler must enter password for username to use for authentication
139 private String username; field in class:DigestMD5Client
362 username = ncb.getName();
373 if (username == null || passwd == null) {
563 * username-value
580 digestResp.write(("username=\"" +
581 quotedStringValue(username) + "\",").getBytes(encoding));
610 digestUri, negotiatedQop, username,
660 digestUri, negotiatedQop, username, negotiatedReal
[all...]
H A DDigestMD5Server.java65 * handler must enter password for username/realm supplied
115 "username", // exactly once
350 * digest-response = 1#( username | realm | nonce | cnonce |
355 * username = "username" "=" <"> username-value <">
356 * username-value = qdstr-val
411 /* username: exactly once */
412 String username;
414 username
673 generateResponseAuth(String username, char[] passwd, byte[] cnonce, int nonceCount, byte[] authzidBytes) argument
[all...]
/openjdk7/jdk/test/sun/net/ftp/
H A DFtpGetContent.java46 private String username; field in class:FtpGetContent.FtpServer
203 username = str.substring(5);
206 if ("user2".equals(username)) {
407 return username;
H A DFtpURL.java44 private String username; field in class:FtpURL.FtpServer
202 username = str.substring(5);
205 if ("user2".equals(username)) {
405 return username;
468 throw new RuntimeException("Inccorect username received");
474 throw new RuntimeException("Inccorect username received");
/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpCommandHandler.java58 private String username = null; field in class:FtpCommandHandler
473 username = buf.toString();
477 if (auth.authenticate(username, null)) {
486 if (logged || (username == null)) {
495 if (auth.authenticate(username, password)) {
497 out.println("230 User " + username + " logged in.");
501 username = null;
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java391 private transient String username; field in class:BaseRowSet
865 * is not serialized, the username property is set at runtime before
874 return username;
878 * Sets the username property for this <code>RowSet</code> object
880 * is not serialized, the username property is set at run time before
890 username = null;
892 username = name;

Completed in 41 milliseconds

12