クラスKeyStoreBuilderParameters
java.lang.Object
javax.net.ssl.KeyStoreBuilderParameters
- すべての実装されたインタフェース:
ManagerFactoryParameters
public class KeyStoreBuilderParameters extends Object implements ManagerFactoryParameters
KeyStore.Builderのリストをカプセル化する、X509KeyManagerのパラメータ・オブジェクトです。
- 導入されたバージョン:
- 1.5
- 関連項目:
-
コンストラクタのサマリー
コンストラクタコンストラクタ説明指定されたKeyStore.Builderから新しいKeyStoreBuilderParametersを構築します。KeyStoreBuilderParameters(List<KeyStore.Builder> parameters) KeyStore.Builderのリストから新しいKeyStoreBuilderParametersを構築します。 -
メソッドのサマリー
クラスオブジェクトで宣言されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait修飾子と型メソッド説明protected Objectclone()このオブジェクトのコピーを作成して、返します。booleanこのオブジェクトと他のオブジェクトが等しいかどうかを示します。protected voidfinalize()削除予定のため非推奨: このAPI要素は、将来のバージョンで削除される可能性があります。最終決定は非推奨であり、将来のリリースで削除される可能性があります。final Class<?> getClass()このObjectの実行時クラスを返します。inthashCode()このオブジェクトに対するハッシュ・コード値を返します。final voidnotify()このオブジェクトのモニターで待機中のスレッドを1つ再開します。final voidこのオブジェクトのモニターで待機中のすべてのスレッドを再開します。toString()オブジェクトの文字列表現を返します。final voidwait()現在のスレッドが目覚めるまで待機します。通常、notifiedまたはinterruptedです。final voidwait(long timeoutMillis) 現在のスレッドは、通常、notifiedまたはinterruptedであるか、一定のリアルタイムが経過するまで、目覚めるまで待機します。final voidwait(long timeoutMillis, int nanos) 現在のスレッドは、通常、notifiedまたはinterruptedであるか、一定のリアルタイムが経過するまで、目覚めるまで待機します。
-
コンストラクタの詳細
-
KeyStoreBuilderParameters
public KeyStoreBuilderParameters(KeyStore.Builder builder) 指定されたKeyStore.Builderから新しいKeyStoreBuilderParametersを構築します。- パラメータ:
builder- Builderオブジェクト- スロー:
NullPointerException- builderがnullである場合
-
KeyStoreBuilderParameters
public KeyStoreBuilderParameters(List<KeyStore.Builder> parameters) KeyStore.Builderのリストから新しいKeyStoreBuilderParametersを構築します。 以後の変更から保護するために、リストは複製されます。- パラメータ:
parameters- Builderオブジェクトのリスト- スロー:
NullPointerException- パラメータがnullである場合IllegalArgumentException- パラメータが空のリストの場合
-
-
メソッドの詳細
-
getParameters
public List<KeyStore.Builder> getParameters()このオブジェクトによってカプセル化されたKeyStore.Buildersの変更不可能なリストを返します。- 戻り値:
- このオブジェクトによってカプセル化されたKeyStore.Buildersの変更不可能なリスト。
-