- 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
を構築します。
-
メソッドのサマリー
すべてのメソッド インスタンス・メソッド 具象メソッド 修飾子と型 メソッド 説明 Set<KeyStore.Entry.Attribute>
getAttributes()
エントリに関連付けられている属性を取得します。SecretKey
getSecretKey()
このエントリ内のSecretKey
を取得します。String
toString()
このSecretKeyEntryの文字列表現を返します。
-
-
-
コンストラクタの詳細
-
SecretKeyEntry
public SecretKeyEntry(SecretKey secretKey)
特定のSecretKey
を使ってSecretKeyEntry
を構築します。- パラメータ:
secretKey
-SecretKey
- 例外:
NullPointerException
-secretKey
がnull
である場合
-
SecretKeyEntry
public SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)
SecretKey
と関連するエントリ属性を使用してSecretKeyEntry
を構築します。指定された
attributes
は、クローニングされてから新しいSecretKeyEntry
オブジェクトに格納されます。- パラメータ:
secretKey
-SecretKey
attributes
- 属性- 例外:
NullPointerException
-secretKey
またはattributes
がnull
の場合- 導入されたバージョン:
- 1.8
-
-
メソッドの詳細
-
getSecretKey
public SecretKey getSecretKey()
このエントリ内のSecretKey
を取得します。- 戻り値:
- このエントリ内の
SecretKey
-
getAttributes
public Set<KeyStore.Entry.Attribute> getAttributes()
エントリに関連付けられている属性を取得します。- 定義:
getAttributes
、インタフェースKeyStore.Entry
- 戻り値:
- 属性の変更不可能な
Set
(空の場合もある) - 導入されたバージョン:
- 1.8
-
-