JavaTM 2 Platform
Standard Ed. 6

java.net
類別 PasswordAuthentication

java.lang.Object
  繼承者 java.net.PasswordAuthentication

public final class PasswordAuthentication
extends Object

PasswordAuthentication 類別是供 Authenticator 使用的資料持有者。它只是使用者名和密碼的存儲資源庫。

從以下版本開始:
1.2
另請參見:
Authenticator, Authenticator.getPasswordAuthentication()

建構子摘要
PasswordAuthentication(String userName, char[] password)
          根據給定使用者名和密碼創建新的 PasswordAuthentication 物件。
 
方法摘要
 char[] getPassword()
          返回使用者密碼。
 String getUserName()
          返回使用者名。
 
從類別 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()
返回使用者密碼。

注意,此方法返回到密碼的參考。不再需要密碼資訊後,調用方負責將其歸零。

返回:
密碼

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only