java.lang.Object
java.security.KeyStore.TrustedCertificateEntry
- All Implemented Interfaces:
- KeyStore.Entry
- Enclosing class:
- KeyStore
A 
KeyStore entry that holds a trusted
 Certificate.- Since:
- 1.5
- 
Nested Class SummaryNested classes/interfaces declared in interface java.security.KeyStore.EntryKeyStore.Entry.Attribute
- 
Constructor SummaryConstructorsConstructorDescriptionTrustedCertificateEntry(Certificate trustedCert) Constructs aTrustedCertificateEntrywith a trustedCertificate.TrustedCertificateEntry(Certificate trustedCert, Set<KeyStore.Entry.Attribute> attributes) Constructs aTrustedCertificateEntrywith a trustedCertificateand associated entry attributes.
- 
Method SummaryModifier and TypeMethodDescriptionRetrieves the attributes associated with an entry.Gets the trustedCertificatefrom this entry.toString()Returns a string representation of this TrustedCertificateEntry.
- 
Constructor Details- 
TrustedCertificateEntryConstructs aTrustedCertificateEntrywith a trustedCertificate.- Parameters:
- trustedCert- the trusted- Certificate
- Throws:
- NullPointerException- if- trustedCertis- null
 
- 
TrustedCertificateEntryConstructs aTrustedCertificateEntrywith a trustedCertificateand associated entry attributes.The specified attributesis cloned before it is stored in the newTrustedCertificateEntryobject.- Parameters:
- trustedCert- the trusted- Certificate
- attributes- the attributes
- Throws:
- NullPointerException- if- trustedCertor- attributesis- null
- Since:
- 1.8
 
 
- 
- 
Method Details- 
getTrustedCertificateGets the trustedCertificatefrom this entry.- Returns:
- the trusted Certificatefrom this entry
 
- 
getAttributesRetrieves the attributes associated with an entry.- Specified by:
- getAttributesin interface- KeyStore.Entry
- Returns:
- an unmodifiable Setof attributes, possibly empty
- Since:
- 1.8
 
- 
toStringReturns a string representation of this TrustedCertificateEntry.
 
-