Most visited

Recently visited

Added in API level 1

KeyStore.TrustedCertificateEntry

public static final class KeyStore.TrustedCertificateEntry
extends Object implements KeyStore.Entry

java.lang.Object
   ↳ java.security.KeyStore.TrustedCertificateEntry


A KeyStore entry that holds a trusted Certificate.

Summary

Public constructors

KeyStore.TrustedCertificateEntry(Certificate trustedCert)

Constructs a TrustedCertificateEntry with a trusted Certificate.

Public methods

Certificate getTrustedCertificate()

Gets the trusted Certficate from this entry.

String toString()

Returns a string representation of this TrustedCertificateEntry.

Inherited methods

From class java.lang.Object

Public constructors

KeyStore.TrustedCertificateEntry

Added in API level 1
KeyStore.TrustedCertificateEntry (Certificate trustedCert)

Constructs a TrustedCertificateEntry with a trusted Certificate.

Parameters
trustedCert Certificate: the trusted Certificate
Throws
NullPointerException if trustedCert is null

Public methods

getTrustedCertificate

Added in API level 1
Certificate getTrustedCertificate ()

Gets the trusted Certficate from this entry.

Returns
Certificate the trusted Certificate from this entry

toString

Added in API level 1
String toString ()

Returns a string representation of this TrustedCertificateEntry.

Returns
String a string representation of this TrustedCertificateEntry.

Hooray!