所有类
java.net
类 PasswordAuthentication
java.lang.Object
java.net.PasswordAuthentication
-
public final class PasswordAuthentication
- extends Object
PasswordAuthentication 类是供 Authenticator 使用的数据持有者。它只是用户名和密码的存储库。
-
从以下版本开始:
-
1.2
-
另请参见:
-
Authenticator
, Authenticator.getPasswordAuthentication()
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PasswordAuthentication
public PasswordAuthentication(String userName,
char[] password)
-
根据给定用户名和密码创建新的
PasswordAuthentication
对象。
注意,要在将给定用户密码存储在新的 PasswordAuthentication
对象中之前克隆该密码。
-
参数:
-
userName
- 用户名
-
password
- 用户密码
getUserName
public String getUserName()
-
返回用户名。
-
-
返回:
-
用户名
getPassword
public char[] getPassword()
-
返回用户密码。
注意,此方法返回到密码的引用。不再需要密码信息后,调用方负责将其归零。
-
-
返回:
-
密码
所有类