public static final class KeyStore.TrustedCertificateEntry extends Object implements KeyStore.Entry
Certificate
が格納されたKeyStore
エントリです。KeyStore.Entry.Attribute
コンストラクタと説明 |
---|
TrustedCertificateEntry(Certificate trustedCert)
信頼できる
Certificate を使ってTrustedCertificateEntry を構築します。 |
TrustedCertificateEntry(Certificate trustedCert, Set<KeyStore.Entry.Attribute> attributes)
信頼できる
Certificate および関連するエントリ属性を使って、TrustedCertificateEntry を構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
Set<KeyStore.Entry.Attribute> |
getAttributes()
エントリに関連付けられている属性を取得します。
|
Certificate |
getTrustedCertificate()
このエントリ内の信頼できる
Certficate を取得します。 |
String |
toString()
このTrustedCertificateEntryの文字列表現を返します。
|
public TrustedCertificateEntry(Certificate trustedCert)
Certificate
を使ってTrustedCertificateEntry
を構築します。trustedCert
- 信頼できるCertificate
NullPointerException
- trustedCert
がnull
である場合public TrustedCertificateEntry(Certificate trustedCert, Set<KeyStore.Entry.Attribute> attributes)
Certificate
および関連するエントリ属性を使って、TrustedCertificateEntry
を構築します。
指定されたattributes
は、クローニングされてから新しいTrustedCertificateEntry
オブジェクトに格納されます。
trustedCert
- 信頼できるCertificate
attributes
- 属性NullPointerException
- trustedCert
またはattributes
がnull
の場合public Certificate getTrustedCertificate()
Certficate
を取得します。Certificate
public Set<KeyStore.Entry.Attribute> getAttributes()
getAttributes
、インタフェース: KeyStore.Entry
Set
(空の場合もある) バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.