- java.lang.Object
- 
- java.security.KeyStore.SecretKeyEntry
 
- 
- すべての実装されたインタフェース:
- KeyStore.Entry
 - 含まれているクラス:
- KeyStore
 
 public static final class KeyStore.SecretKeyEntry extends Object implements KeyStore.Entry 特定のSecretKeyが格納されたKeyStoreエントリです。- 導入されたバージョン:
- 1.5
 
- 
- 
ネストされたクラスのサマリー- 
インタフェース java.security.KeyStore.Entryで宣言されたネストされたクラス/インタフェースKeyStore.Entry.Attribute
 
- 
 - 
コンストラクタのサマリーコンストラクタ コンストラクタ 説明 SecretKeyEntry(SecretKey secretKey)特定のSecretKeyを使ってSecretKeyEntryを構築します。SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)SecretKeyと関連するエントリ属性を使用してSecretKeyEntryを構築します。
 
- 
- 
- 
コンストラクタの詳細- 
SecretKeyEntrypublic SecretKeyEntry(SecretKey secretKey) 特定のSecretKeyを使ってSecretKeyEntryを構築します。- パラメータ:
- secretKey-- SecretKey
- 例外:
- NullPointerException-- secretKeyが- nullである場合
 
 - 
SecretKeyEntrypublic SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes) SecretKeyと関連するエントリ属性を使用してSecretKeyEntryを構築します。指定された attributesは、クローニングされてから新しいSecretKeyEntryオブジェクトに格納されます。- パラメータ:
- secretKey-- SecretKey
- attributes- 属性
- 例外:
- NullPointerException-- secretKeyまたは- attributesが- nullの場合
- 導入されたバージョン:
- 1.8
 
 
- 
 - 
メソッドの詳細- 
getSecretKeypublic SecretKey getSecretKey() このエントリ内のSecretKeyを取得します。- 戻り値:
- このエントリ内のSecretKey
 
 - 
getAttributespublic Set<KeyStore.Entry.Attribute> getAttributes() エントリに関連付けられている属性を取得します。- 定義:
- getAttributes、インタフェース:- KeyStore.Entry
- 戻り値:
- 属性の変更不可能なSet(空の場合もある)
- 導入されたバージョン:
- 1.8
 
 
- 
 
-