KeyStore.TrustedCertificateEntry (Java SE 9 & JDK 9 ) (original) (raw)
- java.security.KeyStore.TrustedCertificateEntry
All Implemented Interfaces:
[KeyStore.Entry](../../java/security/KeyStore.Entry.html "interface in java.security")
Enclosing class:
KeyStore
public static final class KeyStore.TrustedCertificateEntry
extends Object
implements KeyStore.Entry
A KeyStore
entry that holds a trustedCertificate
.
Since:
1.5
Nested Class Summary
* ### Nested classes/interfaces inherited from interface java.security.[KeyStore.Entry](../../java/security/KeyStore.Entry.html "interface in java.security") `[KeyStore.Entry.Attribute](../../java/security/KeyStore.Entry.Attribute.html "interface in java.security")`
Constructor Summary
Constructors
Constructor Description TrustedCertificateEntry(Certificate trustedCert) Constructs a TrustedCertificateEntry with a trusted Certificate. TrustedCertificateEntry(Certificate trustedCert,Set<KeyStore.Entry.Attribute> attributes) Constructs a TrustedCertificateEntry with a trusted Certificate and associated entry attributes. Method Summary
All Methods Instance Methods Concrete Methods
Modifier and Type Method Description Set<KeyStore.Entry.Attribute> getAttributes() Retrieves the attributes associated with an entry. Certificate getTrustedCertificate() Gets the trusted Certficate from this entry. String toString() Returns a string representation of this TrustedCertificateEntry. * ### Methods inherited from class java.lang.[Object](../../java/lang/Object.html "class in java.lang") `[clone](../../java/lang/Object.html#clone--), [equals](../../java/lang/Object.html#equals-java.lang.Object-), [finalize](../../java/lang/Object.html#finalize--), [getClass](../../java/lang/Object.html#getClass--), [hashCode](../../java/lang/Object.html#hashCode--), [notify](../../java/lang/Object.html#notify--), [notifyAll](../../java/lang/Object.html#notifyAll--), [wait](../../java/lang/Object.html#wait--), [wait](../../java/lang/Object.html#wait-long-), [wait](../../java/lang/Object.html#wait-long-int-)`
Constructor Detail
* #### TrustedCertificateEntry public TrustedCertificateEntry([Certificate](../../java/security/cert/Certificate.html "class in java.security.cert") trustedCert) Constructs a `TrustedCertificateEntry` with a trusted `Certificate`. Parameters: `trustedCert` \- the trusted `Certificate` Throws: `[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")` \- if`trustedCert` is `null` * #### TrustedCertificateEntry public TrustedCertificateEntry([Certificate](../../java/security/cert/Certificate.html "class in java.security.cert") trustedCert, [Set](../../java/util/Set.html "interface in java.util")<[KeyStore.Entry.Attribute](../../java/security/KeyStore.Entry.Attribute.html "interface in java.security")> attributes) Constructs a `TrustedCertificateEntry` with a trusted `Certificate` and associated entry attributes. The specified `attributes` is cloned before it is stored in the new `TrustedCertificateEntry` object. Parameters: `trustedCert` \- the trusted `Certificate` `attributes` \- the attributes Throws: `[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")` \- if `trustedCert` or`attributes` is `null` Since: 1.8
Method Detail
* #### getTrustedCertificate public [Certificate](../../java/security/cert/Certificate.html "class in java.security.cert") getTrustedCertificate() Gets the trusted `Certficate` from this entry. Returns: the trusted `Certificate` from this entry * #### getAttributes public [Set](../../java/util/Set.html "interface in java.util")<[KeyStore.Entry.Attribute](../../java/security/KeyStore.Entry.Attribute.html "interface in java.security")> getAttributes() Retrieves the attributes associated with an entry. Specified by: `[getAttributes](../../java/security/KeyStore.Entry.html#getAttributes--)` in interface `[KeyStore.Entry](../../java/security/KeyStore.Entry.html "interface in java.security")` Returns: an unmodifiable `Set` of attributes, possibly empty Since: 1.8 * #### toString public [String](../../java/lang/String.html "class in java.lang") toString() Returns a string representation of this TrustedCertificateEntry. Overrides: `[toString](../../java/lang/Object.html#toString--)` in class `[Object](../../java/lang/Object.html "class in java.lang")` Returns: a string representation of this TrustedCertificateEntry.
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2017, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.