JavaTM Platform
Standard Ed. 6

java.net
クラス PasswordAuthentication

java.lang.Object
  上位を拡張 java.net.PasswordAuthentication

public final class PasswordAuthentication
extends Object

クラス PasswordAuthentication は、オーセンティケータによって使用されるデータホルダーです。これは単に、ユーザー名とパスワード用のリポジトリです。

導入されたバージョン:
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 Platform
Standard Ed. 6

バグの報告と機能のリクエスト
さらに詳しい API リファレンスおよび開発者ドキュメントについては、Java SE 開発者用ドキュメントを参照してください。開発者向けの詳細な解説、概念の概要、用語の定義、バグの回避策、およびコード実例が含まれています。

Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。